5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-08 11:42:04 +08:00

Fix example building

This commit is contained in:
Lea Anthony 2024-04-27 17:43:58 +10:00
parent 69c513e33d
commit 67c493f1a8
No known key found for this signature in database
GPG Key ID: 33DAF7BB90A58405

View File

@ -132,8 +132,10 @@ tasks:
- task: format
# - task: docs:update:api
test:example:
test:example:darwin:
dir: 'examples/{{.DIR}}'
platforms:
- darwin
cmds:
- echo "Building example {{.DIR}}"
- go mod tidy
@ -142,6 +144,16 @@ tasks:
CGO_LDFLAGS: -framework UniformTypeIdentifiers -mmacosx-version-min=10.13
CGO_CFLAGS: -mmacosx-version-min=10.13
test:example:notdarwin:
dir: 'examples/{{.DIR}}'
platforms:
- linux
- windows
cmds:
- echo "Building example {{.DIR}}"
- go mod tidy
- go build -o "testbuild-{{.DIR}}{{exeExt}}"
test:examples:
summary: Builds the examples
@ -169,6 +181,10 @@ tasks:
wml
cmds:
- for: { var: EXAMPLEDIRS }
task: test:example
task: test:example:darwin
vars:
DIR: "{{.ITEM}}"
- for: { var: EXAMPLEDIRS }
task: test:example:notdarwin
vars:
DIR: "{{.ITEM}}"