;ci: stack paths test: edits

This commit is contained in:
Simon Michael 2025-06-13 16:27:57 -10:00
parent 2abb717f49
commit fc46ddffe3

View File

@ -156,7 +156,7 @@ jobs:
key: ${{ runner.os }}-stack-global-$ghc-${{ hashFiles('**.yaml') }} key: ${{ runner.os }}-stack-global-$ghc-${{ hashFiles('**.yaml') }}
restore-keys: | restore-keys: |
${{ runner.os }}-stack-global-$ghc ${{ runner.os }}-stack-global-$ghc
if: env.do-all # if: env.do-all
- name: Cache - stack-installed programs in ~/.local/bin - name: Cache - stack-installed programs in ~/.local/bin
id: stack-programs id: stack-programs
@ -166,7 +166,7 @@ jobs:
key: ${{ runner.os }}-stack-programs-$ghc-${{ hashFiles('**.yaml') }} key: ${{ runner.os }}-stack-programs-$ghc-${{ hashFiles('**.yaml') }}
restore-keys: | restore-keys: |
${{ runner.os }}-stack-programs-$ghc ${{ runner.os }}-stack-programs-$ghc
if: env.do-all # if: env.do-all
- name: Cache - .stack-work - name: Cache - .stack-work
uses: actions/cache@v4 uses: actions/cache@v4
@ -213,13 +213,14 @@ jobs:
${{ runner.os }}-hledger-web-stack-work-$ghc ${{ runner.os }}-hledger-web-stack-work-$ghc
if: env.do-all if: env.do-all
# Ensure the ghc version used by the default stack.yaml is installed. # Ensure the ghc version we need is installed.
# The following stack path commands require it, so let's install it now more quietly. # The following stack path commands require it, so let's install it first, quietly if possible.
# Hopefully it will often be in our cached dirs, avoiding reinstall. # Hopefully it will often be in our cached dirs, avoiding reinstall.
# Don't rely on the preinstalled ghc, it's too old/variable. # Don't rely on the preinstalled ghc, it's too old/variable.
- name: Ensure ghc is installed - name: Ensure ghc is installed
run: | run: |
stack setup --verbosity error $stack setup --verbosity error
if: env.do-all
- name: Show stack directories - name: Show stack directories
run: | run: |
@ -246,6 +247,7 @@ jobs:
printf "local-hoogle-root: \t"; $stack path --local-hoogle-root # Local project documentation root printf "local-hoogle-root: \t"; $stack path --local-hoogle-root # Local project documentation root
printf "dist-dir: \t"; $stack path --dist-dir # Dist work directory, relative to package directory printf "dist-dir: \t"; $stack path --dist-dir # Dist work directory, relative to package directory
printf "local-hpc-root: \t"; $stack path --local-hpc-root # Where HPC reports and tix files are stored printf "local-hpc-root: \t"; $stack path --local-hpc-root # Where HPC reports and tix files are stored
if: env.do-all
# ACTIONS # ACTIONS