Yo yielder integration #2071
Workflow file for this run
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: CI - Gemstone iOS | |
| on: | |
| push: | |
| branches: ["main"] | |
| paths: | |
| - "gemstone/**" | |
| pull_request: | |
| branches: ["main"] | |
| paths: | |
| - "gemstone/**" | |
| - ".github/workflows/ci-stone-ios.yml" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| CARGO_TERM_COLOR: always | |
| SCCACHE_GHA_ENABLED: "true" | |
| RUSTC_WRAPPER: "sccache" | |
| jobs: | |
| build_ios: | |
| runs-on: macos-26 | |
| defaults: | |
| run: | |
| working-directory: gemstone | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Restore cargo cache | |
| uses: Swatinem/rust-cache@v2 | |
| with: | |
| shared-key: "ci-rust" | |
| - name: Run sccache-cache | |
| uses: mozilla-actions/sccache-action@v0.0.9 | |
| - name: Install just | |
| uses: extractions/setup-just@v3 | |
| - name: Install iOS targets | |
| run: just install-ios-targets | |
| - name: Build iOS | |
| run: just build-ios | |
| - name: Test iOS | |
| run: just test-ios |