From 46ac4e2aa842fa8368e084e04518030d30a3f9e8 Mon Sep 17 00:00:00 2001 From: Stevan Andjelkovic Date: Mon, 4 Nov 2024 12:30:48 +0100 Subject: [PATCH] ci: remove line break from install target --- .github/workflows/main.yaml | 17 ++++++++++++++++- Makefile | 3 +-- 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index e659614..ec5523b 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -117,7 +117,7 @@ jobs: strategy: fail-fast: false matrix: - #os: [ubuntu-24.04, macos-15, windows-2022] + # os: [ubuntu-24.04, macos-15, windows-2022] os: [windows-2022] ghc-version: ['9.6.6'] cabal-version: ['3.12.1.0'] @@ -183,6 +183,21 @@ jobs: if: steps.cache.outputs.cache-hit != 'true' run: make build-deps + - name: Debug .cache/cabal cache + run: | + ls -Rlh ${HOME}/.cache/cabal || true + + - name: Debug .cabal/store cache + run: | + echo ${{ steps.setup.outputs.cabal-store }} + ls -Rlh ${{ steps.setup.outputs.cabal-store }} || true + echo "===" + ls -Rlh ${HOME}/.cabal/store || true + + - name: Debug dist-newstyle cache + run: | + ls -Rlh dist-newstyle || true + # Cache dependencies already here, so that we do not have to rebuild them # should the subsequent steps fail. - name: Save cached dependencies diff --git a/Makefile b/Makefile index b95751b..1876300 100644 --- a/Makefile +++ b/Makefile @@ -95,8 +95,7 @@ bump: endif install: - $(CABAL) install all --installdir=$(SPEX_BIN) \ - --install-method=copy --overwrite-policy=always + $(CABAL) install all --installdir=$(SPEX_BIN) --install-method=copy --overwrite-policy=always release: @echo "NEW_VERSION=$(NEW_VERSION)"