This repository was archived by the owner on Jun 1, 2026. It is now read-only.
implement btc/bch/zcash signing in rust #2332
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/**" | |
| 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: Setup Rust | |
| uses: ./.github/actions/setup-rust-ci | |
| - name: Install iOS targets | |
| run: just install-ios-targets | |
| - name: Build iOS | |
| run: just build-ios | |
| - name: Test iOS | |
| run: just test-ios |