From c73c2dc12cc96fd519dcd7c32d4d2804df73c197 Mon Sep 17 00:00:00 2001 From: Yuki Okushi Date: Wed, 29 Jan 2020 09:00:04 +0900 Subject: [PATCH] Don't use cache in Windows CI (#1327) --- .github/workflows/windows.yml | 27 ++------------------------- 1 file changed, 2 insertions(+), 25 deletions(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index fed4ce031..36b224ba6 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -27,26 +27,6 @@ jobs: profile: minimal override: true - - name: Generate Cargo.lock - uses: actions-rs/cargo@v1 - with: - command: generate-lockfile - - name: Cache cargo registry - uses: actions/cache@v1 - with: - path: ~/.cargo/registry - key: ${{ matrix.version }}-x86_64-pc-windows-msvc-cargo-registry-trimmed-${{ hashFiles('**/Cargo.lock') }} - - name: Cache cargo index - uses: actions/cache@v1 - with: - path: ~/.cargo/git - key: ${{ matrix.version }}-x86_64-pc-windows-msvc-cargo-index-trimmed-${{ hashFiles('**/Cargo.lock') }} - - name: Cache cargo build - uses: actions/cache@v1 - with: - path: target - key: ${{ matrix.version }}-x86_64-pc-windows-msvc-cargo-build-trimmed-${{ hashFiles('**/Cargo.lock') }} - - name: Install OpenSSL run: | vcpkg integrate install @@ -74,8 +54,5 @@ jobs: --skip=test_expect_continue --skip=test_http10_keepalive --skip=test_slow_request - - - name: Clear the cargo caches - run: | - cargo install cargo-cache --no-default-features --features ci-autoclean - cargo-cache + --skip=test_connection_force_close + --skip=test_connection_server_close