Skip to content

Commit aaf4dd7

Browse files
cpuest31
authored andcommitted
ci: add caching w/ actions/cache@v3
This commit adds a caching step to the `build-windows`, `build` and `coverage` jobs of the GitHub actions CI configuration. We key based on: 1. Runner OS 2. Rust toolchain 3. Hash of Cargo.lock
1 parent e468600 commit aaf4dd7

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/ci.yml

+28
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,16 @@ jobs:
7272
- uses: actions/checkout@v4
7373
with:
7474
persist-credentials: false
75+
- uses: actions/cache@v3
76+
with:
77+
path: |
78+
~/.cargo/bin/
79+
~/.cargo/registry/index/
80+
~/.cargo/registry/cache/
81+
~/.cargo/git/db/
82+
target/
83+
$VCPKG_DEFAULT_BINARY_CACHE
84+
key: ${{ runner.os }}-cargo-stable-${{ hashFiles('Cargo.lock') }}
7585
- uses: egor-tensin/vs-shell@v2
7686
with:
7787
arch: amd64
@@ -105,6 +115,15 @@ jobs:
105115
- uses: actions/checkout@v4
106116
with:
107117
persist-credentials: false
118+
- uses: actions/cache@v3
119+
with:
120+
path: |
121+
~/.cargo/bin/
122+
~/.cargo/registry/index/
123+
~/.cargo/registry/cache/
124+
~/.cargo/git/db/
125+
target/
126+
key: ${{ runner.os }}-cargo-${{matrix.toolchain}}-${{ hashFiles('Cargo.lock') }}
108127
- name: Install Rust
109128
uses: dtolnay/rust-toolchain@master
110129
with:
@@ -126,6 +145,15 @@ jobs:
126145
uses: actions/checkout@v4
127146
with:
128147
persist-credentials: false
148+
- uses: actions/cache@v3
149+
with:
150+
path: |
151+
~/.cargo/bin/
152+
~/.cargo/registry/index/
153+
~/.cargo/registry/cache/
154+
~/.cargo/git/db/
155+
target/
156+
key: ${{ runner.os }}-cargo-stable-${{ hashFiles('Cargo.lock') }}
129157
- name: Install cargo-llvm-cov
130158
uses: taiki-e/install-action@cargo-llvm-cov
131159
- name: Install rust toolchain

0 commit comments

Comments
 (0)