From 88991ca8df0e885f25c3ce2751cdb4c0e05755aa Mon Sep 17 00:00:00 2001 From: Stevan Andjelkovic Date: Tue, 22 Oct 2024 14:21:24 +0200 Subject: [PATCH] ci: try again --- .github/workflows/main.yaml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index b04e243..46700fd 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -129,13 +129,6 @@ jobs: run: | ${{ env.cabal }} build all --only-dependencies --project-dir=/mnt - - name: Inspect caches - run: | - echo ${PWD} - echo ${HOME} - pwd - ls -R "${HOME}/.cabal/packages" "${HOME}/.cabal/store" "${{ github.workspace }}/dist-newstyle" - # Cache dependencies already here, so that we do not have to rebuild them # should the subsequent steps fail. - name: Save cached dependencies @@ -148,6 +141,14 @@ jobs: ${{ github.workspace }}/dist-newstyle key: ${{ steps.cache.outputs.cache-primary-key }} + - name: Inspect caches + run: | + echo ${PWD} + echo ${HOME} + pwd + ls -R "${HOME}/.cache/cabal" "${HOME}/.cabal/store" "${{ github.workspace }}/dist-newstyle" || true + + # - name: Build # run: cabal build all