File tree Expand file tree Collapse file tree 2 files changed +2
-21
lines changed Expand file tree Collapse file tree 2 files changed +2
-21
lines changed Original file line number Diff line number Diff line change 33
33
- name : Install Rust target for cross-compilation
34
34
run : rustup target add ${{ env.CORE_TARGET }}
35
35
36
- # caching
37
- - name : make rustc version available to cache keys
38
- id : rustc
39
- run : echo "::set-output name=version::$(rustc -V)"
40
- - name : cache Cargo registry
41
- uses : actions/cache@v3
42
- with :
43
- path : |
44
- ~/.cargo/registry/cache
45
- ~/.cargo/registry/index
46
- key : cargo-registry-${{ hashFiles('**/Cargo.lock') }}
47
- restore-keys : |
48
- cargo-registry-
49
- - name : cache Cargo build artifacts
50
- uses : actions/cache@v3
51
- with :
52
- path : target
53
- key : cargo-target-${{ runner.os }}-${{ steps.rustc.outputs.version }}-${{ hashFiles('**/Cargo.lock') }}
54
- restore-keys : |
55
- cargo-target-${{ runner.os }}-${{ steps.rustc.outputs.version }}-
56
-
57
36
# run tests
58
37
- name : Run testsuite
59
38
run : cargo xtest
Original file line number Diff line number Diff line change @@ -7,8 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
8
8
## [ Unreleased]
9
9
10
+ - [ #109 ] Don't cache, because it is slow
10
11
- [ #108 ] CI: Update cargo-dist to v0.1.27
11
12
13
+ [ #109 ] : https://github.com/knurling-rs/flip-link/pull/109
12
14
[ #108 ] : https://github.com/knurling-rs/flip-link/pull/107
13
15
14
16
## [ v0.1.10] - 2025-01-08
You can’t perform that action at this time.
0 commit comments