We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 485cf53 commit 917d500Copy full SHA for 917d500
.github/workflows/validate-commit.yml
@@ -24,6 +24,13 @@ jobs:
24
target
25
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
26
- run: cargo test
27
+ # There is a bug with BSD tar on macOS where the first 8MB of the file are
28
+ # sometimes all NUL bytes. See https://github.com/actions/cache/issues/403
29
+ # and https://github.com/rust-lang/cargo/issues/8603 for some more
30
+ # information. An alternative solution here is to install GNU tar, but
31
+ # flushing the disk cache seems to work, too.
32
+ - run: sudo purge
33
+ if: startsWith(matrix.os, 'macos-')
34
35
lint:
36
runs-on: ubuntu-latest
0 commit comments