From 2f106a3d37c95498bf732adf3228317cfa1df16e Mon Sep 17 00:00:00 2001 From: Matan Kushner Date: Tue, 13 Oct 2020 15:58:36 -0400 Subject: [PATCH] ci: temporarily disable GH Actions cache --- .github/workflows/workflow.yml | 48 +++++++++++++++++----------------- 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 12dc807d..bf125bb8 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