We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
rust-cache
citool
1 parent 07d3fd1 commit 4981c42Copy full SHA for 4981c42
.github/workflows/ci.yml
@@ -53,6 +53,14 @@ 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 citoo
60
+ l
61
+ uses: Swatinem/rust-cache@9d47c6ad4b02e050fd481d890b2ea34778fd09d6 # v2.7.8
62
+ with:
63
+ workspaces: src/ci/citool
64
- name: Calculate the CI job matrix
65
env:
66
COMMIT_MESSAGE: ${{ github.event.head_commit.message }}
0 commit comments