We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 292b095 commit f82a871Copy full SHA for f82a871
.github/workflows/reusable-tests.yaml
@@ -369,6 +369,11 @@ jobs:
369
name: Test ${{ matrix.node.path }}
370
runs-on: ubuntu-latest
371
timeout-minutes: 30
372
+ env:
373
+ # Allow sccache to work
374
+ CARGO_INCREMENTAL: "false"
375
+ SCCACHE_GHA_ENABLED: "true"
376
+ RUSTC_WRAPPER: "sccache"
377
strategy:
378
fail-fast: false
379
matrix:
@@ -492,6 +497,9 @@ jobs:
492
497
path: ${{ matrix.node.path }}/target
493
498
key: cargo-${{ runner.os }}-${{ matrix.node.path }}-${{ env.ANCHOR_VERSION }}-${{ env.SOLANA_CLI_VERSION }}-${{ hashFiles('**/Cargo.lock') }}
494
499
500
+ - name: Run sccache-cache
501
+ uses: mozilla-actions/sccache-action@v0.0.9
502
+
495
503
- run: ${{ matrix.node.cmd }}
496
504
name: ${{ matrix.node.path }} program test
505
0 commit comments