Use the STACKAGE_VERSION for scripts #54
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: stack | |
on: | |
push: | |
branches: [main, ci-stack] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
name: ghc-${{ matrix.vers.ghc }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
cabal: ["3.10.3.0"] | |
vers: | |
- {ghc: "9.4.8", stackage: "lts-21.25"} | |
- {ghc: "9.8.2", stackage: "nightly-2024-05-18"} | |
ghc-default: ["9.4.8"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up GHC and cabal-install | |
uses: haskell-actions/setup@v2 | |
id: setup | |
with: | |
ghc-version: ${{ matrix.vers.ghc }} | |
cabal-version: ${{ matrix.cabal }} | |
enable-stack: true | |
stack-version: '2.15.7' | |
- name: Configure stack | |
run: | | |
stack config set system-ghc --global true | |
stack config set install-ghc --global false | |
- name: Update hackage index | |
run: cabal update --ignore-project | |
- name: Install Dhall | |
uses: dhall-lang/setup-dhall@v4 | |
with: | |
version: '1.42.0' | |
- name: Updo | |
run: GHC_VERSION=${{ matrix.vers.ghc }} STACKAGE_VERSION=${{ matrix.vers.stackage }} make -f project-files.mk stack.yaml | |
# Generate a file to cache dependencies. | |
- name: build | |
run: stack ls dependencies json | jq > stack-deps.json | |
- name: build | |
run: stack test --no-run-tests --no-terminal --only-dependencies | |
- name: Restore cached dependency of Pantry (Stackage package index) | |
uses: actions/cache/restore@v4 | |
id: pantry | |
env: | |
key: ghc-${{ steps.setup.outputs.ghc-version }}-stack-${{ steps.setup.outputs.stack-version }} | |
with: | |
path: ${{ steps.setup.outputs.stack-root }}/pantry | |
key: ${{ env.key }}-plan-${{ hashFiles('stack-deps.json') }} | |
restore-keys: ${{ env.key }}- | |
- name: Recompute Stackage package index (~/.stack/pantry) | |
if: steps.pantry.outputs.cache-hit != 'true' | |
run: stack update | |
- name: Stack resolver check | |
if: ${{ matrix.vers.ghc == matrix.ghc-default }} | |
run: grep "${{ matrix.vers.stackage }}" stack.yaml | |
- name: Stack lock check | |
if: ${{ matrix.vers.ghc == matrix.ghc-default }} | |
run: stack test --no-run-tests --dry-run --lock-file=error-on-write | |
- name: Generate Stack project | |
run: GHC_VERSION=${{ matrix.vers.ghc }} STACKAGE_VERSION=${{ matrix.vers.stackage }} make -f project-files.mk ${{ matrix.vers.ghc}}.dhall2stack.yaml | |
- name: Build | |
run: stack test --no-run-tests --no-terminal --stack-yaml=ghc-${{ matrix.vers.ghc }}.dhall2stack.yaml | |
- name: Save cached dependencies | |
uses: actions/cache/save@v4 | |
if: steps.pantry.outputs.cache-hit != 'true' | |
with: | |
path: ${{ steps.setup.outputs.stack-root }}/pantry | |
key: ${{ steps.pantry.outputs.cache-primary-key }} | |
- name: Test | |
run: stack test hpack-dhall:golden --test-arguments "--color=always" --no-terminal --stack-yaml=ghc-${{ matrix.vers.ghc }}.dhall2stack.yaml |