From bd8c2970157e1aa33f7c6593332ae4383ce96a93 Mon Sep 17 00:00:00 2001 From: Christian Stolz Date: Thu, 26 Sep 2024 20:25:15 +0200 Subject: [PATCH] Minimal version --- .github/workflows/ci.yml | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8a0efed..851a8c6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,26 +34,9 @@ jobs: target: ${{ matrix.target }} override: true - - name: Cache cargo registry - uses: actions/cache@v2 - with: - path: ~/.cargo/registry - key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }} - restore-keys: | - ${{ runner.os }}-cargo-registry- - - - name: Cache cargo index - uses: actions/cache@v2 - with: - path: ~/.cargo/git - key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }} - restore-keys: | - ${{ runner.os }}-cargo-index- - - name: Build uses: actions-rs/cargo@v1 with: - use-cross: true command: build args: --release --target ${{ matrix.target }}