We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 081582b commit 5e4e883Copy full SHA for 5e4e883
1 file changed
.github/workflows/tests.yml
@@ -29,14 +29,19 @@ jobs:
29
swift --version
30
31
- name: Build and test
32
+ # The app icon is an Icon Composer .icon authored by a newer toolchain
33
+ # than the runner's actool, which crashes compiling it. The icon is not
34
+ # needed to run unit tests, so it is disabled for the CI build only.
35
run: |
36
xcodebuild test \
37
-project JSONParser/JSONParser.xcodeproj \
38
-scheme JSONParser \
39
-destination 'platform=macOS' \
40
-only-testing:JSONParserTests \
41
-resultBundlePath TestResults.xcresult \
- CODE_SIGNING_ALLOWED=NO
42
+ CODE_SIGNING_ALLOWED=NO \
43
+ ASSETCATALOG_COMPILER_APPICON_NAME= \
44
+ ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS=NO
45
46
- name: Upload test results
47
if: always()
0 commit comments