mirror of
https://github.com/denoland/rusty_v8.git
synced 2024-11-21 15:04:33 -05:00
ci: add workaround for MacOS + Cargo + Github Actions cache bug (#462)
This commit is contained in:
parent
f15a250221
commit
81f7a653b2
1 changed files with 20 additions and 0 deletions
20
.github/workflows/ci.yml
vendored
20
.github/workflows/ci.yml
vendored
|
@ -114,6 +114,26 @@ jobs:
|
|||
restore-keys:
|
||||
${{ matrix.config.target }}-${{ matrix.config.variant }}-
|
||||
|
||||
|
||||
# It seems that the 'target' directory does not always get restored
|
||||
# from cache correctly on MacOS. In the build log we see the following:
|
||||
#
|
||||
# Fresh serde_derive v1.0.115
|
||||
#
|
||||
# But a little while after that Cargo aborts because 'serde_derive' is
|
||||
# now nowhere to be found. We're not the only ones experiencing this,
|
||||
# see https://github.com/actions-rs/cargo/issues/111.
|
||||
#
|
||||
# error[E0463]: can't find crate for `serde_derive`
|
||||
# ##[error] --> /Users/runner/.cargo/registry/src/github.com-
|
||||
# | 1ecc6299db9ec823/serde-1.0.115/src/lib.rs:285:1
|
||||
# |
|
||||
# 285 | extern crate serde_derive;
|
||||
# | ^^^^^^^^^^^^^^^^^^^^^^^^^^ can't find crate
|
||||
- name: Work around MacOS + Cargo + Github Actions cache bug
|
||||
if: runner.os == 'macOS'
|
||||
run: cargo clean -p serde_derive
|
||||
|
||||
- name: Install and start sccache
|
||||
shell: pwsh
|
||||
env:
|
||||
|
|
Loading…
Reference in a new issue