hotfix: CI: disable build cache
This commit is contained in:
parent
5add143318
commit
9cf1d9df46
2 changed files with 18 additions and 17 deletions
16
.github/workflows/coverage.yml
vendored
16
.github/workflows/coverage.yml
vendored
|
@ -35,14 +35,14 @@ jobs:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: ⚡ Cache
|
# - name: ⚡ Cache
|
||||||
uses: actions/cache@v3
|
# uses: actions/cache@v3
|
||||||
with:
|
# with:
|
||||||
path: |
|
# path: |
|
||||||
~/.cargo/registry
|
# ~/.cargo/registry
|
||||||
~/.cargo/git
|
# ~/.cargo/git
|
||||||
target
|
# target
|
||||||
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
|
# key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
|
||||||
|
|
||||||
- name: Install ${{ matrix.version }}
|
- name: Install ${{ matrix.version }}
|
||||||
uses: actions-rs/toolchain@v1
|
uses: actions-rs/toolchain@v1
|
||||||
|
|
19
.github/workflows/linux.yml
vendored
19
.github/workflows/linux.yml
vendored
|
@ -37,15 +37,16 @@ jobs:
|
||||||
#
|
#
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: ⚡ Cache
|
|
||||||
uses: actions/cache@v3
|
# - name: ⚡ Cache
|
||||||
with:
|
# uses: actions/cache@v3
|
||||||
path: |
|
# with:
|
||||||
/var/lib/docker
|
# path: |
|
||||||
~/.cargo/registry
|
# /var/lib/docker
|
||||||
~/.cargo/git
|
# ~/.cargo/registry
|
||||||
target
|
# ~/.cargo/git
|
||||||
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
|
# target
|
||||||
|
# key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
|
||||||
|
|
||||||
# - name: Login to DockerHub
|
# - name: Login to DockerHub
|
||||||
# if: (github.ref == 'refs/heads/master' || github.event_name == 'push') && github.repository == 'forgeflux-org/starchart'
|
# if: (github.ref == 'refs/heads/master' || github.event_name == 'push') && github.repository == 'forgeflux-org/starchart'
|
||||||
|
|
Loading…
Reference in a new issue