We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 90e4ba4 + cb3d074 commit 407e568Copy full SHA for 407e568
.github/workflows/ci.yml
@@ -64,12 +64,18 @@ jobs:
64
uses: Swatinem/rust-cache@9d47c6ad4b02e050fd481d890b2ea34778fd09d6 # v2.7.8
65
with:
66
workspaces: src/ci/citool
67
+ - name: Test citool
68
+ # Only test citool on the auto branch, to reduce latency of the calculate matrix job
69
+ # on PR/try builds.
70
+ if: ${{ github.ref == 'refs/heads/auto' }}
71
+ run: |
72
+ cd src/ci/citool
73
+ CARGO_INCREMENTAL=0 cargo test
74
- name: Calculate the CI job matrix
75
env:
76
COMMIT_MESSAGE: ${{ github.event.head_commit.message }}
77
run: |
78
cd src/ci/citool
- CARGO_INCREMENTAL=0 cargo test
79
CARGO_INCREMENTAL=0 cargo run calculate-job-matrix >> $GITHUB_OUTPUT
80
id: jobs
81
job:
0 commit comments