File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -13,14 +13,14 @@ jobs:
13
13
steps :
14
14
- uses : actions/checkout@v3
15
15
- name : Build macOS
16
- run : xcodebuild -scheme EasyMetalShader build -destination "generic/platform=macOS"
16
+ run : set -o pipefail && xcodebuild -skipMacroValidation - scheme EasyMetalShader build -destination "generic/platform=macOS,arch=arm64,variant=macOS" | xcpretty
17
17
- name : Build iOS
18
- run : xcodebuild -scheme EasyMetalShader build -destination "generic/platform=iOS"
18
+ run : set -o pipefail && xcodebuild -skipMacroValidation - scheme EasyMetalShader build -destination "generic/platform=iOS" | xcpretty
19
19
test :
20
20
runs-on : macos-14
21
21
steps :
22
22
- uses : actions/checkout@v3
23
23
- name : Test macOS
24
- run : xcodebuild -scheme EasyMetalShaderTests test -destination "platform=macOS,arch=x86_64"
24
+ run : set -o pipefail && xcodebuild -skipMacroValidation - scheme EasyMetalShaderTests test -destination "platform=macOS,arch=arm64" | xcpretty
25
25
- name : Test iOS
26
- run : xcodebuild -scheme EasyMetalShaderTests test -destination "name=iPhone 14 Pro"
26
+ run : set -o pipefail && xcodebuild -skipMacroValidation - scheme EasyMetalShaderTests test -destination "platform=iOS" | xcpretty
You can’t perform that action at this time.
0 commit comments