From 8cc36e23a6e69469517ee90c5e2d66bb23fc8003 Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Wed, 10 Apr 2024 08:19:35 -1000 Subject: [PATCH] ;ci: "Cache" -> "Uncache" --- .github/workflows/binaries-linux-x64-static.yml | 4 ++-- .github/workflows/binaries-mac-x64.yml | 14 +++++++------- .github/workflows/binaries-windows-x64.yml | 14 +++++++------- .github/workflows/ci.yml | 14 +++++++------- 4 files changed, 23 insertions(+), 23 deletions(-) diff --git a/.github/workflows/binaries-linux-x64-static.yml b/.github/workflows/binaries-linux-x64-static.yml index 8516da5ce..baee6d68a 100644 --- a/.github/workflows/binaries-linux-x64-static.yml +++ b/.github/workflows/binaries-linux-x64-static.yml @@ -34,7 +34,7 @@ jobs: tools/checkembeddedfiles if: env.CONTINUE - - name: Cache ghcup-installed tools + - name: Uncache ghcup-installed tools id: ghcup uses: actions/cache@v3 with: @@ -43,7 +43,7 @@ jobs: restore-keys: | ${{ runner.os }}-ghcup - - name: Cache cabal-installed libs + - name: Uncache cabal-installed libs id: cabal uses: actions/cache@v3 with: diff --git a/.github/workflows/binaries-mac-x64.yml b/.github/workflows/binaries-mac-x64.yml index d75f1cb02..e08bb44b6 100644 --- a/.github/workflows/binaries-mac-x64.yml +++ b/.github/workflows/binaries-mac-x64.yml @@ -50,7 +50,7 @@ jobs: # things to be cached/restored: - - name: Cache stack global package db + - name: Uncache stack global package db id: stack-global uses: actions/cache@v3 with: @@ -60,7 +60,7 @@ jobs: ${{ runner.os }}-stack-global-from20220817 if: env.CONTINUE - - name: Cache stack-installed programs in ~/.local/bin + - name: Uncache stack-installed programs in ~/.local/bin id: stack-programs uses: actions/cache@v3 with: @@ -70,7 +70,7 @@ jobs: ${{ runner.os }}-stack-programs-from20220817 if: env.CONTINUE - - name: Cache .stack-work + - name: Uncache .stack-work uses: actions/cache@v3 with: path: .stack-work @@ -79,7 +79,7 @@ jobs: ${{ runner.os }}-stack-work-from20220817 if: env.CONTINUE - - name: Cache hledger-lib/.stack-work + - name: Uncache hledger-lib/.stack-work uses: actions/cache@v3 with: path: hledger-lib/.stack-work @@ -88,7 +88,7 @@ jobs: ${{ runner.os }}-hledger-lib-stack-work-from20220817 if: env.CONTINUE - - name: Cache hledger/.stack-work + - name: Uncache hledger/.stack-work uses: actions/cache@v3 with: path: hledger/.stack-work @@ -97,7 +97,7 @@ jobs: ${{ runner.os }}-hledger-stack-work-from20220817 if: env.CONTINUE - - name: Cache hledger-ui/.stack-work + - name: Uncache hledger-ui/.stack-work uses: actions/cache@v3 with: path: hledger-ui/.stack-work @@ -106,7 +106,7 @@ jobs: ${{ runner.os }}-hledger-ui-stack-work-from20220817 if: env.CONTINUE - - name: Cache hledger-web/.stack-work + - name: Uncache hledger-web/.stack-work uses: actions/cache@v3 with: path: hledger-web/.stack-work diff --git a/.github/workflows/binaries-windows-x64.yml b/.github/workflows/binaries-windows-x64.yml index 33ec34cca..923210c79 100644 --- a/.github/workflows/binaries-windows-x64.yml +++ b/.github/workflows/binaries-windows-x64.yml @@ -34,7 +34,7 @@ jobs: # things to be cached/restored: - - name: Cache stack global package db + - name: Uncache stack global package db id: stack-global-package-db uses: actions/cache@v3 with: @@ -44,7 +44,7 @@ jobs: ${{ runner.os }}-appdata-roaming-stack if: env.CONTINUE - - name: Cache stack programs dir # ghc, ghc-included packages and their haddocks, mingw, msys2 + - name: Uncache stack programs dir # ghc, ghc-included packages and their haddocks, mingw, msys2 id: stack-programs-dir uses: actions/cache@v3 with: @@ -56,7 +56,7 @@ jobs: ${{ runner.os }}-appdata-local-programs-stack if: env.CONTINUE - - name: Cache .stack-work + - name: Uncache .stack-work uses: actions/cache@v3 with: path: .stack-work @@ -65,7 +65,7 @@ jobs: ${{ runner.os }}-stack-work if: env.CONTINUE - - name: Cache hledger-lib/.stack-work + - name: Uncache hledger-lib/.stack-work uses: actions/cache@v3 with: path: hledger-lib/.stack-work @@ -74,7 +74,7 @@ jobs: ${{ runner.os }}-hledger-lib-stack-work if: env.CONTINUE - - name: Cache hledger/.stack-work + - name: Uncache hledger/.stack-work uses: actions/cache@v3 with: path: hledger/.stack-work @@ -83,7 +83,7 @@ jobs: ${{ runner.os }}-hledger-stack-work if: env.CONTINUE - - name: Cache hledger-ui/.stack-work + - name: Uncache hledger-ui/.stack-work uses: actions/cache@v3 with: path: hledger-ui/.stack-work @@ -92,7 +92,7 @@ jobs: ${{ runner.os }}-hledger-ui-stack-work if: env.CONTINUE - - name: Cache hledger-web/.stack-work + - name: Uncache hledger-web/.stack-work uses: actions/cache@v3 with: path: hledger-web/.stack-work diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9eec6e9b7..25525455b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -142,7 +142,7 @@ jobs: # things to be cached/restored: - - name: Cache stack global package db + - name: Uncache stack global package db id: stack-global uses: actions/cache@v3 with: @@ -155,7 +155,7 @@ jobs: ${{ runner.os }}-stack-global-${{ matrix.plan.ghc }} if: env.CONTINUE - - name: Cache stack-installed programs in ~/.local/bin + - name: Uncache stack-installed programs in ~/.local/bin id: stack-programs uses: actions/cache@v3 with: @@ -165,7 +165,7 @@ jobs: ${{ runner.os }}-stack-programs-${{ matrix.plan.ghc }} if: env.CONTINUE - - name: Cache .stack-work + - name: Uncache .stack-work uses: actions/cache@v3 with: path: .stack-work @@ -174,7 +174,7 @@ jobs: ${{ runner.os }}-stack-work-${{ matrix.plan.ghc }} if: env.CONTINUE - - name: Cache hledger-lib/.stack-work + - name: Uncache hledger-lib/.stack-work uses: actions/cache@v3 with: path: hledger-lib/.stack-work @@ -183,7 +183,7 @@ jobs: ${{ runner.os }}-hledger-lib-stack-work-${{ matrix.plan.ghc }} if: env.CONTINUE - - name: Cache hledger/.stack-work + - name: Uncache hledger/.stack-work uses: actions/cache@v3 with: path: hledger/.stack-work @@ -192,7 +192,7 @@ jobs: ${{ runner.os }}-hledger-stack-work-${{ matrix.plan.ghc }} if: env.CONTINUE - - name: Cache hledger-ui/.stack-work + - name: Uncache hledger-ui/.stack-work uses: actions/cache@v3 with: path: hledger-ui/.stack-work @@ -201,7 +201,7 @@ jobs: ${{ runner.os }}-hledger-ui-stack-work-${{ matrix.plan.ghc }} if: env.CONTINUE - - name: Cache hledger-web/.stack-work + - name: Uncache hledger-web/.stack-work uses: actions/cache@v3 with: path: hledger-web/.stack-work