Pre-boot simulator for xcodebuild usage #2628
Workflow file for this run
This file contains 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: Tests | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
# One active job per PR, cancel older ones on push | |
concurrency: | |
group: ${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
xcodeproj_tests: | |
name: .xcodeproj Tests on Xcode 14.2.0 | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Preflight Env | |
run: .github/workflows/preflight_env.sh --no-bzlmod --use-remote-cache | |
- name: Run tests | |
run: ./tests/xcodeproj-tests.sh --run && ./tests/test-tests.sh | |
- uses: actions/upload-artifact@v2 | |
if: failure() | |
with: | |
name: bazel-testlogs | |
path: bazel-testlogs |