macOS: DEST fix for GitHub actions #15
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: iOS CI | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - ios/** | |
| - .github/workflows/ios-ci.yml | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - ios/** | |
| - .github/workflows/ios-ci.yml | |
| jobs: | |
| ios-build-and-test: | |
| runs-on: macos-latest | |
| defaults: | |
| run: | |
| working-directory: ios | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Build | |
| env: | |
| XCODE_FLAGS: "CODE_SIGNING_ALLOWED=NO CODE_SIGNING_REQUIRED=NO CODE_SIGN_IDENTITY=" | |
| DEST: "platform=iOS Simulator,name=iPhone 16" | |
| run: make build CONFIG=Debug | |
| - name: Test | |
| env: | |
| XCODE_FLAGS: "CODE_SIGNING_ALLOWED=NO CODE_SIGNING_REQUIRED=NO CODE_SIGN_IDENTITY=" | |
| DEST: "platform=iOS Simulator,name=iPhone 16" | |
| run: make test CONFIG=Debug | |