sandwich/.github/workflows/sandwich.yml

190 lines
6.0 KiB
YAML
Raw Permalink 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:
2024-07-26 03:33:58 +03:00
- uses: actions/checkout@v4
2020-07-15 02:15:03 +03:00
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
# Because the HaskellNet dependency doesn't work yet with GHC 9.8
- name: Disable demo-fake-smtp-server for GHC 9.8.x
if: ${{ matrix.ghc == '9.8.1' && runner.os == 'macOS' }}
run: sed -i '.bak' 's/demos\/demo-fake-smtp-server/-- demos\/demo-fake-smtp-server/g' cabal.project
- name: Disable demo-fake-smtp-server for GHC 9.8.x
if: ${{ matrix.ghc == '9.8.1' && runner.os != 'macOS' }}
run: sed -i 's/demos\/demo-fake-smtp-server/-- demos\/demo-fake-smtp-server/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:
path: ${{ steps.setup-haskell-cabal.outputs.cabal-store }}
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-23 04:02:21 +03:00
# For postgres context tests/demo
2024-07-21 13:41:59 +03:00
brew install libpq postgresql
2024-07-23 04:02:21 +03:00
# For older GHCs
2024-07-26 09:12:10 +03:00
brew install llvm@13 --quiet # Suppress deprecation warning
2024-07-23 04:07:52 +03:00
echo /opt/homebrew/opt/llvm@13/bin >> $GITHUB_PATH
# https://gitlab.haskell.org/ghc/ghc/-/issues/20592#note_391266
echo "C_INCLUDE_PATH=`xcrun --show-sdk-path`/usr/include/ffi" >> "$GITHUB_ENV"
- 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)
2024-07-21 12:54:38 +03:00
# run: cabal test sandwich-contexts
2024-07-21 12:53:39 +03:00
# - name: Test (sandwich-contexts-docker)
2024-07-21 12:54:38 +03:00
# run: cabal test sandwich-contexts-docker
2024-07-21 12:53:39 +03:00
- name: Test (sandwich-contexts-minio)
2024-07-21 12:54:38 +03:00
run: cabal test sandwich-contexts-minio
2024-07-21 12:53:39 +03:00
- name: Test (sandwich-hedgehog)
2024-07-21 12:54:38 +03:00
run: cabal test sandwich-hedgehog
2024-07-21 12:53:39 +03:00
- name: Test (sandwich-quickcheck)
2024-07-21 12:54:38 +03:00
run: cabal test sandwich-quickcheck
2024-07-21 12:53:39 +03:00
- name: Test (sandwich-webdriver)
2024-07-21 12:54:38 +03:00
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:
path: ${{ steps.setup-haskell-cabal.outputs.cabal-store }}
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:
2024-07-26 03:33:58 +03:00
- uses: actions/checkout@v4
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)
2024-07-21 12:54:38 +03:00
run: stack test sandwich --stack-yaml ${{matrix.yaml}} --system-ghc
2024-07-18 15:40:37 +03:00
- name: Test (sandwich-contexts)
2024-07-21 12:54:38 +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:54:38 +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-kubernetes)
run: stack test sandwich-contexts-kubernetes --stack-yaml ${{matrix.yaml}} --system-ghc
2024-07-18 15:40:37 +03:00
- name: Test (sandwich-contexts-minio)
2024-07-21 12:54:38 +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:54:38 +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:54:38 +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:54:38 +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