sandwich/.github/workflows/sandwich-hedgehog.yml

106 lines
2.4 KiB
YAML
Raw Normal View History

2023-04-14 02:25:20 +03:00
name: sandwich-hedgehog
on:
pull_request:
push:
jobs:
cabal:
name: ${{ matrix.os }} / ghc ${{ matrix.ghc }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macOS-latest
# - windows-latest
ghc:
- "8.6.5"
- "8.8.4"
- "8.10.7"
- "9.0.2"
2023-11-18 13:31:36 +03:00
- "9.2.8"
- "9.4.7"
- "9.6.3"
2024-01-24 07:38:59 +03:00
- "9.8.1"
2023-04-14 02:25:20 +03:00
exclude:
- os: macOS-latest
ghc: 8.6.5
- os: macOS-latest
ghc: 8.8.4
steps:
- uses: actions/checkout@v2
- uses: haskell/actions/setup@v2
2023-04-14 02:25:20 +03:00
id: setup-haskell-cabal
name: Setup Haskell
with:
ghc-version: ${{ matrix.ghc }}
cabal-version: "latest"
- name: Freeze
run: |
cd sandwich-hedgehog
cabal freeze
- uses: actions/cache@v1
name: Cache ~/.cabal/store
with:
path: ${{ steps.setup-haskell-cabal.outputs.cabal-store }}
key: ${{ runner.os }}-${{ matrix.ghc }}-${{ hashFiles('cabal.project.freeze') }}
- name: Build
run: |
cd sandwich-hedgehog
cabal configure --enable-tests --enable-benchmarks --test-show-details=direct
cabal build all
- name: Test
run: |
cd sandwich-hedgehog
cabal test all
stack:
name: stack / ghc ${{ matrix.ghc }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
2023-06-23 07:04:14 +03:00
include:
- ghc: "9.2.8"
2023-11-18 13:31:36 +03:00
yaml: "stack-9.2.8.yaml"
- ghc: "9.4.7"
2023-11-18 13:58:09 +03:00
yaml: "stack-9.4.7.yaml"
2023-11-18 13:31:36 +03:00
- ghc: "9.6.3"
yaml: "stack-9.6.3.yaml"
2024-01-24 07:38:59 +03:00
- ghc: "9.8.1"
yaml: "stack-9.8.1.yaml"
2023-04-14 02:25:20 +03:00
steps:
2023-06-23 07:04:14 +03:00
- uses: actions/checkout@v3
2023-04-14 02:25:20 +03:00
- uses: haskell/actions/setup@v2
2023-04-14 02:25:20 +03:00
name: Setup Haskell Stack
with:
ghc-version: ${{ matrix.ghc }}
enable-stack: true
2023-06-23 07:04:14 +03:00
stack-version: "latest"
2023-04-14 02:25:20 +03:00
- uses: actions/cache@v1
name: Cache ~/.stack
with:
path: ~/.stack
2023-06-23 07:04:14 +03:00
key: ${{ runner.os }}-${{ matrix.ghc }}-${{ matrix.resolver }}-stack
2023-04-14 02:25:20 +03:00
- name: Build
run: |
cd sandwich-hedgehog
2023-11-18 13:31:36 +03:00
stack build --stack-yaml ../${{matrix.yaml}} --system-ghc --test --bench --no-run-tests --no-run-benchmarks
2023-04-14 02:25:20 +03:00
- name: Test
run: |
cd sandwich-hedgehog
2023-11-18 13:31:36 +03:00
stack test --stack-yaml ../${{matrix.yaml}} --system-ghc