Skip to content

Commit

Permalink
Check versions
Browse files Browse the repository at this point in the history
  • Loading branch information
philderbeast committed May 23, 2024
1 parent 4428db1 commit 45a14a7
Showing 1 changed file with 9 additions and 51 deletions.
60 changes: 9 additions & 51 deletions .github/workflows/stack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: stack

on:
push:
branches: [main, ci-stack]
branches: [main, ci/check-versions]
pull_request:
branches: [main]

Expand All @@ -19,7 +19,7 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Set up GHC and cabal-install
- name: Set up GHC and cabal-install from matrix
uses: haskell-actions/setup@v2
id: setup
with:
Expand All @@ -28,57 +28,15 @@ jobs:
enable-stack: true
stack-version: '2.15.7'

- name: Set up GHC 8.10.7 for scripts
- name: Set up GHC 8.10.7 by itself
uses: haskell-actions/setup@v2
with:
ghc-version: "8.10.7"

- name: Configure stack
- name: Check installation
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: 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.cache.outputs.cache-primary-key }}

- name: build
run: stack test --no-run-tests --no-terminal

- name: test golden
run: stack test hpack-dhall:golden --no-terminal --test-arguments "--color=always"
ghc --version
ghc-9.8.2 --version
ghc-8.10.7 --version
cabal --version
stack --version

0 comments on commit 45a14a7

Please sign in to comment.