Skip to content

Commit bca1ae8

Browse files
authored
Merge pull request #109 from knurling-rs/no-caching
Don't cache because it is very slow
2 parents d10c8f5 + bd70ea4 commit bca1ae8

File tree

2 files changed

+2
-21
lines changed

2 files changed

+2
-21
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -33,27 +33,6 @@ jobs:
3333
- name: Install Rust target for cross-compilation
3434
run: rustup target add ${{ env.CORE_TARGET }}
3535

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-
5736
# run tests
5837
- name: Run testsuite
5938
run: cargo xtest

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99

10+
- [#109] Don't cache, because it is slow
1011
- [#108] CI: Update cargo-dist to v0.1.27
1112

13+
[#109]: https://github.com/knurling-rs/flip-link/pull/109
1214
[#108]: https://github.com/knurling-rs/flip-link/pull/107
1315

1416
## [v0.1.10] - 2025-01-08

0 commit comments

Comments
 (0)