sandwich/.github/workflows/sandwich.yml

174 lines
4.9 KiB
YAML
Raw Normal View History

name: sandwich
2020-07-15 02:15:03 +03:00
on:
pull_request:
push:
jobs:
cabal:
name: ${{ matrix.os }} / ghc ${{ matrix.ghc }}
runs-on: ${{ matrix.os }}
strategy:
2021-04-26 01:08:00 +03:00
fail-fast: false
2020-07-15 02:15:03 +03:00
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
2020-07-15 02:15:03 +03:00
ghc:
2024-07-20 05:28:18 +03:00
# - "8.6.5"
# - "8.8.4"
2023-03-16 09:54:11 +03:00
- "8.10.7"
- "9.0.2"
2023-11-18 13:58:35 +03:00
- "9.2.8"
2024-07-18 09:34:53 +03:00
- "9.4.8"
2024-07-21 12:53:39 +03:00
- "9.6.6"
2024-01-24 07:38:59 +03:00
- "9.8.1"
2023-11-18 13:31:36 +03:00
2020-07-15 02:15:03 +03:00
steps:
- uses: actions/checkout@v2
2024-07-20 05:28:18 +03:00
- uses: cachix/install-nix-action@v27
2024-07-20 13:10:22 +03:00
if: runner.os != 'Windows'
2024-07-20 05:28:18 +03:00
with:
# release-24.05
nix_path: nixpkgs=https://github.com/NixOS/nixpkgs/archive/74435c9234c751e6786c5f3fd34ff6b0f0c13bd1.tar.gz
- name: Install dependencies (Windows)
if: runner.os == 'Windows'
run: |
"$env:PGBIN" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
# Disable demo-postgres since it requires unix sockets
sed -i 's/demos\/demo-postgres/-- demos\/demo-postgres/g' cabal.project
2024-07-21 12:47:52 +03:00
- uses: haskell-actions/setup@v2
2020-07-15 02:15:03 +03:00
id: setup-haskell-cabal
name: Setup Haskell
with:
ghc-version: ${{ matrix.ghc }}
2021-05-28 04:54:55 +03:00
cabal-version: "latest"
2020-07-15 02:15:03 +03:00
- name: Freeze
run: |
cabal freeze
- uses: actions/cache/restore@v4
id: cache-restore
2020-07-15 02:15:03 +03:00
with:
2024-07-21 12:53:39 +03:00
path: ~/.cabal
2020-07-15 02:15:03 +03:00
key: ${{ runner.os }}-${{ matrix.ghc }}-${{ hashFiles('cabal.project.freeze') }}
- name: Install dependencies (macOS)
if: runner.os == 'macOS'
run: |
brew update
2024-07-21 02:51:50 +03:00
brew install libpq
- name: Install dependencies (Windows)
if: runner.os == 'Windows'
run: |
2024-07-21 12:47:52 +03:00
# This needs to be a PowerShell command
"$env:PGBIN" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
2020-07-15 02:15:03 +03:00
- name: Build
run: |
cabal configure --enable-tests --enable-benchmarks --test-show-details=direct
cabal build all
2024-07-21 12:53:39 +03:00
# - name: Test (sandwich-contexts)
# run: | cabal test sandwich-contexts
# - name: Test (sandwich-contexts-docker)
# run: | cabal test sandwich-contexts-docker
- name: Test (sandwich-contexts-minio)
run: | cabal test sandwich-contexts-minio
- name: Test (sandwich-hedgehog)
run: | cabal test sandwich-hedgehog
- name: Test (sandwich-quickcheck)
run: | cabal test sandwich-quickcheck
- name: Test (sandwich-webdriver)
run: | cabal test sandwich-webdriver
2020-07-15 02:15:03 +03:00
- uses: actions/cache/save@v4
if: always() && steps.cache-restore.outputs.cache-hit != 'true'
with:
2024-07-21 12:53:39 +03:00
path: ~/.cabal
key: ${{ runner.os }}-${{ matrix.ghc }}-${{ hashFiles('cabal.project.freeze') }}
2020-07-15 02:15:03 +03:00
stack:
name: stack / ghc ${{ matrix.ghc }}
runs-on: ubuntu-latest
strategy:
2021-04-26 01:08:00 +03:00
fail-fast: false
2020-07-15 02:15:03 +03:00
matrix:
2023-06-23 07:04:14 +03:00
include:
- ghc: "9.2.8"
2023-11-18 11:19:32 +03:00
yaml: "stack-9.2.8.yaml"
2024-07-18 09:34:53 +03:00
- ghc: "9.4.8"
yaml: "stack-9.4.8.yaml"
- ghc: "9.6.5"
2024-07-20 05:28:18 +03:00
yaml: "stack.yaml"
2024-01-24 07:38:59 +03:00
- ghc: "9.8.1"
yaml: "stack-9.8.1.yaml"
2020-07-15 02:15:03 +03:00
steps:
2023-06-23 07:04:14 +03:00
- uses: actions/checkout@v3
2020-07-15 02:15:03 +03:00
- uses: cachix/install-nix-action@v27
with:
2024-07-20 03:34:17 +03:00
# release-24.05
2024-07-20 04:13:51 +03:00
nix_path: nixpkgs=https://github.com/NixOS/nixpkgs/archive/74435c9234c751e6786c5f3fd34ff6b0f0c13bd1.tar.gz
2024-07-21 12:47:52 +03:00
- uses: haskell-actions/setup@v2
2020-07-15 02:15:03 +03:00
name: Setup Haskell Stack
with:
ghc-version: ${{ matrix.ghc }}
2021-05-28 03:39:14 +03:00
enable-stack: true
2023-06-23 07:04:14 +03:00
stack-version: "latest"
2020-07-15 02:15:03 +03:00
- uses: actions/cache/restore@v4
name: Cache restore ~/.stack
id: cache-restore
2020-07-15 02:15:03 +03:00
with:
path: ~/.stack
2024-07-18 15:54:20 +03:00
key: ${{ runner.os }}-${{ matrix.ghc }}-${{ matrix.yaml }}-stack
2020-07-15 02:15:03 +03:00
2021-05-28 09:12:55 +03:00
- name: apt
run: |
2021-05-28 09:16:02 +03:00
sudo apt-get update
sudo apt-get install -y libx11-dev libxext-dev libxinerama-dev libxrandr-dev libxss-dev
2021-05-28 09:12:55 +03:00
2020-07-15 02:15:03 +03:00
- name: Build
run: |
2024-07-18 15:40:37 +03:00
stack build --stack-yaml ${{matrix.yaml}} --system-ghc --test --bench --no-run-tests --no-run-benchmarks
2020-07-15 02:15:03 +03:00
2024-07-18 15:40:37 +03:00
- name: Test (sandwich)
2020-07-15 02:15:03 +03:00
run: |
2024-07-18 15:40:37 +03:00
stack test sandwich --stack-yaml ${{matrix.yaml}} --system-ghc
- name: Test (sandwich-contexts)
2024-07-21 12:53:39 +03:00
run: | stack test sandwich-contexts --stack-yaml ${{matrix.yaml}} --system-ghc --ta --debug
2024-07-18 15:40:37 +03:00
- name: Test (sandwich-contexts-docker)
2024-07-21 12:53:39 +03:00
run: | stack test sandwich-contexts-docker --stack-yaml ${{matrix.yaml}} --system-ghc
2024-07-18 15:40:37 +03:00
- name: Test (sandwich-contexts-minio)
2024-07-21 12:53:39 +03:00
run: | stack test sandwich-contexts-minio --stack-yaml ${{matrix.yaml}} --system-ghc
2024-07-18 15:40:37 +03:00
- name: Test (sandwich-hedgehog)
2024-07-21 12:53:39 +03:00
run: | stack test sandwich-hedgehog --stack-yaml ${{matrix.yaml}} --system-ghc
2024-07-18 15:40:37 +03:00
- name: Test (sandwich-quickcheck)
2024-07-21 12:53:39 +03:00
run: | stack test sandwich-quickcheck --stack-yaml ${{matrix.yaml}} --system-ghc
2024-07-18 15:40:37 +03:00
- name: Test (sandwich-webdriver)
2024-07-21 12:53:39 +03:00
run: | stack test sandwich-webdriver --stack-yaml ${{matrix.yaml}} --system-ghc
- uses: actions/cache/save@v4
if: always() && steps.cache-restore.outputs.cache-hit != 'true'
with:
path: ~/.stack
key: ${{ runner.os }}-${{ matrix.ghc }}-${{ matrix.yaml }}-stack