We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 27f1f4d + c49b0bd commit b3e55a5Copy full SHA for b3e55a5
.github/workflows/ci.yml
@@ -53,6 +53,13 @@ jobs:
53
steps:
54
- name: Checkout the source code
55
uses: actions/checkout@v4
56
+ # Cache citool to make its build faster, as it's in the critical path.
57
+ # The rust-cache doesn't bleed into the main `job`, so it should not affect any other
58
+ # Rust compilation.
59
+ - name: Cache citool
60
+ uses: Swatinem/rust-cache@9d47c6ad4b02e050fd481d890b2ea34778fd09d6 # v2.7.8
61
+ with:
62
+ workspaces: src/ci/citool
63
- name: Calculate the CI job matrix
64
env:
65
COMMIT_MESSAGE: ${{ github.event.head_commit.message }}
0 commit comments