Add macOS `xcodebuild` invocation to `ci.yml`

This commit is contained in:
Max Desiatov 2020-12-06 14:28:48 +00:00
parent 37cdf6e454
commit e7f295954f
No known key found for this signature in database
GPG Key ID: FE08EBF9CF58CBA2
1 changed files with 6 additions and 0 deletions

View File

@ -30,6 +30,12 @@ jobs:
`xcrun --find xctest` .build/debug/TokamakPackageTests.xctest
xcodebuild -version
# make sure Tokamak can be built on macOS so that Xcode autocomplete works
xcodebuild -scheme TokamakDemo -destination 'generic/platform=macOS' \
CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO | \
xcpretty --color
cd "NativeDemo"
xcodebuild -scheme iOS -destination 'generic/platform=iOS' \
CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO | \