sandwich/.github/workflows/sandwich.yml
2024-07-18 05:42:33 -07:00

136 lines
3.4 KiB
YAML

name: sandwich
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"
- "9.2.8"
- "9.4.8"
- "9.6.5"
- "9.8.1"
exclude:
# Access violation in generated code when executing data at 0x6d88
- os: windows-latest
ghc: 8.8.4
- os: macOS-latest
ghc: 8.6.5
- os: macOS-latest
ghc: 8.8.4
steps:
- uses: actions/checkout@v2
- uses: haskell/actions/setup@v2
id: setup-haskell-cabal
name: Setup Haskell
with:
ghc-version: ${{ matrix.ghc }}
cabal-version: "latest"
- name: Freeze
run: |
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: |
cabal configure --enable-tests --enable-benchmarks --test-show-details=direct
cabal build all
- name: Test
run: |
cabal test all
stack:
name: stack / ghc ${{ matrix.ghc }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- ghc: "9.2.8"
yaml: "stack-9.2.8.yaml"
- ghc: "9.4.8"
yaml: "stack-9.4.8.yaml"
- ghc: "9.6.5"
yaml: "stack-9.6.5.yaml"
- ghc: "9.8.1"
yaml: "stack-9.8.1.yaml"
steps:
- uses: actions/checkout@v3
- uses: cachix/install-nix-action@v27
with:
nix_path: nixpkgs=channel:release-24.05
- uses: haskell/actions/setup@v2
name: Setup Haskell Stack
with:
ghc-version: ${{ matrix.ghc }}
enable-stack: true
stack-version: "latest"
- uses: actions/cache@v1
name: Cache ~/.stack
with:
path: ~/.stack
key: ${{ runner.os }}-${{ matrix.ghc }}-${{ matrix.resolver }}-stack
- name: apt
run: |
sudo apt-get update
sudo apt-get install -y libx11-dev libxext-dev libxinerama-dev libxrandr-dev libxss-dev
- name: Build
run: |
stack build --stack-yaml ${{matrix.yaml}} --system-ghc --test --bench --no-run-tests --no-run-benchmarks
- name: Test (sandwich)
run: |
stack test sandwich --stack-yaml ${{matrix.yaml}} --system-ghc
- name: Test (sandwich-contexts)
run: |
echo "NIX_PATH: $NIX_PATH"
stack test sandwich-contexts --stack-yaml ${{matrix.yaml}} --system-ghc --ta --debug
- name: Test (sandwich-contexts-docker)
run: |
stack test sandwich-contexts-docker --stack-yaml ${{matrix.yaml}} --system-ghc
- name: Test (sandwich-contexts-minio)
run: |
stack test sandwich-contexts-minio --stack-yaml ${{matrix.yaml}} --system-ghc
- name: Test (sandwich-hedgehog)
run: |
stack test sandwich-hedgehog --stack-yaml ${{matrix.yaml}} --system-ghc
- name: Test (sandwich-quickcheck)
run: |
stack test sandwich-quickcheck --stack-yaml ${{matrix.yaml}} --system-ghc
- name: Test (sandwich-webdriver)
run: |
stack test sandwich-webdriver --stack-yaml ${{matrix.yaml}} --system-ghc