Don't cache the target directory
This seems to cause the Windows CI runner to blow up.
This commit is contained in:
parent
d737c5098f
commit
8c25d8b092
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
|
@ -41,11 +41,11 @@ jobs:
|
||||||
|
|
||||||
- uses: actions/cache@v2
|
- uses: actions/cache@v2
|
||||||
with:
|
with:
|
||||||
|
# FIXME: Caching `target/` causes the Windows runner to blow up after some time
|
||||||
path: |
|
path: |
|
||||||
~/.cargo/registry/index/
|
~/.cargo/registry/index/
|
||||||
~/.cargo/registry/cache/
|
~/.cargo/registry/cache/
|
||||||
~/.cargo/git/db/
|
~/.cargo/git/db/
|
||||||
target/
|
|
||||||
key: ${{ runner.name }}-${{ matrix.cross-target }}
|
key: ${{ runner.name }}-${{ matrix.cross-target }}
|
||||||
|
|
||||||
- name: Set up Rust toolchain
|
- name: Set up Rust toolchain
|
||||||
|
|
3
.github/workflows/docs.yml
vendored
3
.github/workflows/docs.yml
vendored
|
@ -27,12 +27,11 @@ jobs:
|
||||||
|
|
||||||
- uses: actions/cache@v2
|
- uses: actions/cache@v2
|
||||||
with:
|
with:
|
||||||
|
# FIXME: Caching `target/` causes the Windows runner to blow up after some time
|
||||||
path: |
|
path: |
|
||||||
~/.cargo/bin/
|
|
||||||
~/.cargo/registry/index/
|
~/.cargo/registry/index/
|
||||||
~/.cargo/registry/cache/
|
~/.cargo/registry/cache/
|
||||||
~/.cargo/git/db/
|
~/.cargo/git/db/
|
||||||
target/
|
|
||||||
key: ${{ runner.name }}-${{ matrix.cross-target }}
|
key: ${{ runner.name }}-${{ matrix.cross-target }}
|
||||||
|
|
||||||
- name: Set up Rust toolchain
|
- name: Set up Rust toolchain
|
||||||
|
|
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
|
@ -38,11 +38,11 @@ jobs:
|
||||||
|
|
||||||
- uses: actions/cache@v2
|
- uses: actions/cache@v2
|
||||||
with:
|
with:
|
||||||
|
# FIXME: Caching `target/` causes the Windows runner to blow up after some time
|
||||||
path: |
|
path: |
|
||||||
~/.cargo/registry/index/
|
~/.cargo/registry/index/
|
||||||
~/.cargo/registry/cache/
|
~/.cargo/registry/cache/
|
||||||
~/.cargo/git/db/
|
~/.cargo/git/db/
|
||||||
target/
|
|
||||||
key: ${{ runner.name }}-${{ matrix.cross-target }}
|
key: ${{ runner.name }}-${{ matrix.cross-target }}
|
||||||
|
|
||||||
- name: Set up Rust toolchain
|
- name: Set up Rust toolchain
|
||||||
|
|
Loading…
Reference in a new issue