summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorMatan Kushner <hello@matchai.dev>2020-10-13 15:58:36 -0400
committerMatan Kushner <hello@matchai.dev>2020-10-13 15:58:36 -0400
commit2f106a3d37c95498bf732adf3228317cfa1df16e (patch)
tree23227d45b2f9a1c6c8d8dbb6228cbcd7d71f5698 /.github
parent02f741882099da48d9f4cf7936e1bb025bb44929 (diff)
ci: temporarily disable GH Actions cache
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/workflow.yml48
1 files changed, 24 insertions, 24 deletions
diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml
index 12dc807d9..bf125bb8d 100644
--- a/.github/workflows/workflow.yml
+++ b/.github/workflows/workflow.yml
@@ -45,14 +45,14 @@ jobs:
uses: actions/checkout@v2
# Cache files between builds
- - name: Setup | Cache Cargo
- uses: actions/cache@v2
- with:
- path: |
- ~/.cargo/registry
- ~/.cargo/git
- target
- key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
+ # - name: Setup | Cache Cargo
+ # uses: actions/cache@v2
+ # with:
+ # path: |
+ # ~/.cargo/registry
+ # ~/.cargo/git
+ # target
+ # key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Setup | libdbus (ubuntu)
if: matrix.os == 'ubuntu-latest'
@@ -81,14 +81,14 @@ jobs:
uses: actions/checkout@v2
# Cache files between builds
- - name: Setup | Cache Cargo
- uses: actions/cache@v2
- with:
- path: |
- ~/.cargo/registry
- ~/.cargo/git
- target
- key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
+ # - name: Setup | Cache Cargo
+ # uses: actions/cache@v2
+ # with:
+ # path: |
+ # ~/.cargo/registry
+ # ~/.cargo/git
+ # target
+ # key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Setup | Rust
uses: actions-rs/toolchain@v1
@@ -120,14 +120,14 @@ jobs:
run: sudo apt-get install libdbus-1-dev
# Cache files between builds
- - name: Setup | Cache Cargo
- uses: actions/cache@v2
- with:
- path: |
- ~/.cargo/registry
- ~/.cargo/git
- target
- key: ${{ runner.os }}-${{ matrix.rust }}-cargo-${{ hashFiles('**/Cargo.lock') }}
+ # - name: Setup | Cache Cargo
+ # uses: actions/cache@v2
+ # with:
+ # path: |
+ # ~/.cargo/registry
+ # ~/.cargo/git
+ # target
+ # key: ${{ runner.os }}-${{ matrix.rust }}-cargo-${{ hashFiles('**/Cargo.lock') }}
# Install all the required dependencies for testing
- name: Setup | Rust