From e1620a05824ce211d017dfd2622fee9002e004b0 Mon Sep 17 00:00:00 2001 From: Joonas Javanainen Date: Mon, 20 Jan 2020 09:40:53 +0200 Subject: [PATCH] Remove caching --- .github/workflows/ci.yml | 28 ---------------------------- 1 file changed, 28 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2289b7a..888b07f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,16 +27,6 @@ jobs: toolchain: stable override: true components: rustfmt, clippy - - name: Cache cargo registry - uses: actions/cache@v1 - with: - path: ~/.cargo/registry - key: ${{ runner.os }}-cargo-registry - - name: Cache cargo index - uses: actions/cache@v1 - with: - path: ~/.cargo/git - key: ${{ runner.os }}-cargo-index - name: Run cargo check uses: actions-rs/cargo@v1 with: @@ -106,10 +96,6 @@ jobs: with: command: clippy args: --manifest-path imgui-sys-bindgen/Cargo.toml - - name: Clean cache - run: | - cargo install --no-default-features --features ci-autoclean cargo-cache - cargo-cache test: name: Run tests needs: [check] @@ -142,16 +128,6 @@ jobs: - name: Install Ubuntu packages run: sudo apt install libxcb-shape0-dev libxcb-xfixes0-dev if: runner.os == 'Linux' - - name: Cache cargo registry - uses: actions/cache@v1 - with: - path: ~/.cargo/registry - key: ${{ runner.os }}-cargo-registry - - name: Cache cargo index - uses: actions/cache@v1 - with: - path: ~/.cargo/git - key: ${{ runner.os }}-cargo-index - name: Run cargo test uses: actions-rs/cargo@v1 with: @@ -188,7 +164,3 @@ jobs: with: command: test args: --manifest-path imgui-winit-support/Cargo.toml --no-default-features --features winit-20 - - name: Clean cache - run: | - cargo install --no-default-features --features ci-autoclean cargo-cache - cargo-cache