chore(issues): archive closed issue specifications #1182
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: OS Compatibility | |
| # adr: docs/adrs/20260612000000_adopt_sccache_for_ci_bare_builds.md | |
| # sccache added for cross-run compilation caching on bare CI builds. | |
| # Path policy: skip this workflow when every changed file is documentation. | |
| # See .github/workflows/docs-lint.yaml for the lightweight docs-only workflow. | |
| on: | |
| push: | |
| paths-ignore: | |
| - "**/*.md" | |
| - "project-words.txt" | |
| pull_request: | |
| paths-ignore: | |
| - "**/*.md" | |
| - "project-words.txt" | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| build: | |
| name: Build on ${{ matrix.os }} (${{ matrix.toolchain }}) | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| toolchain: [nightly, stable] | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v7 | |
| - id: setup | |
| name: Setup Toolchain | |
| uses: dtolnay/rust-toolchain@stable | |
| with: | |
| toolchain: ${{ matrix.toolchain }} | |
| - id: sccache | |
| name: Install sccache (GHA backend) | |
| uses: mozilla-actions/sccache-action@v0.0.11 | |
| - id: enable-sccache | |
| name: Enable sccache | |
| run: | | |
| echo "RUSTC_WRAPPER=sccache" >> "$GITHUB_ENV" | |
| echo "SCCACHE_GHA_ENABLED=true" >> "$GITHUB_ENV" | |
| echo "CARGO_INCREMENTAL=0" >> "$GITHUB_ENV" | |
| - name: Build project | |
| run: cargo build --verbose |