Merge branch 'ny-ci' #288
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Haskell CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
ghc: ['8.6', '8.8', '8.10', '9.0', '9.2', '9.4', '9.6', '9.8'] | |
include: | |
- os: macos-13 | |
ghc: '9.4' | |
- os: macos-13 | |
ghc: '9.6' | |
- os: windows-latest | |
ghc: '9.4' | |
- os: windows-latest | |
ghc: '9.6' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies (Ubuntu) | |
if: runner.os == 'Linux' | |
run: | | |
sudo apt-get -y update | |
sudo apt-get -y install libtinfo6 libncurses6 | |
- uses: haskell/ghcup-setup@v1 | |
with: | |
ghc: ${{ matrix.ghc }} | |
cabal: latest | |
- name: Build | |
run: | | |
set -eux | |
cabal update | |
cabal build --enable-tests --enable-benchmarks | |
cabal test --test-show-details=direct filepath-tests | |
cabal test --test-show-details=direct --test-options='--quickcheck-tests 50_000' filepath-equivalent-tests | |
cabal test --test-show-details=direct abstract-filepath | |
cabal bench | |
cabal haddock | |
cabal check | |
cabal sdist | |
shell: bash | |
- if: matrix.os == 'ubuntu-latest' | |
name: make all | |
run: | | |
set -eux | |
export "PATH=$HOME/.cabal/bin:$PATH" | |
cabal install --overwrite-policy=always --install-method=copy cpphs | |
make all | |
git diff --exit-code | |
i386: | |
runs-on: ubuntu-latest | |
container: | |
image: i386/ubuntu:bionic | |
steps: | |
- name: Install | |
run: | | |
apt-get update -y | |
apt-get install -y autoconf build-essential zlib1g-dev libgmp-dev curl libncurses5 libtinfo5 libncurses5-dev libtinfo-dev git | |
curl --proto '=https' --tlsv1.2 -sSf https://get-ghcup.haskell.org | BOOTSTRAP_HASKELL_NONINTERACTIVE=1 BOOTSTRAP_HASKELL_INSTALL_NO_STACK=1 sh | |
- uses: actions/checkout@v1 | |
- name: Test | |
run: | | |
. ~/.ghcup/env | |
cabal update | |
cabal test | |
cabal bench | |
# We use github.com/haskell self-hosted runners for ARM testing. | |
# If they become unavailable in future, put ['armv7', 'aarch64'] | |
# back to emulation jobs above. | |
arm: | |
runs-on: [self-hosted, Linux, ARM64] | |
strategy: | |
fail-fast: true | |
matrix: | |
arch: [arm32v7, arm64v8] | |
steps: | |
- uses: docker://hasufell/arm64v8-ubuntu-haskell:focal | |
name: Cleanup | |
with: | |
args: "find . -mindepth 1 -maxdepth 1 -exec rm -rf -- {} +" | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- if: matrix.arch == 'arm32v7' | |
uses: docker://hasufell/arm32v7-ubuntu-haskell:focal | |
name: Run build (arm32v7 linux) | |
with: | |
args: sh -c "cabal update && ghcup install ghc --isolate=/usr --force 9.2.2 && cabal test -w ghc-9.2.2 && cabal bench -w ghc-9.2.2" | |
- if: matrix.arch == 'arm64v8' | |
uses: docker://hasufell/arm64v8-ubuntu-haskell:focal | |
name: Run build (arm64v8 linux) | |
with: | |
args: sh -c "cabal update && ghcup install ghc --isolate=/usr --force 9.2.2 && cabal test -w ghc-9.2.2 && cabal bench -w ghc-9.2.2" | |
darwin_arm: | |
runs-on: ${{ matrix.os }} | |
env: | |
MACOSX_DEPLOYMENT_TARGET: 10.13 | |
HOMEBREW_CHANGE_ARCH_TO_ARM: 1 | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- os: [self-hosted, macOS, ARM64] | |
ghc: 8.10.7 | |
- os: [self-hosted, macOS, ARM64] | |
ghc: 9.2.6 | |
- os: [self-hosted, macOS, ARM64] | |
ghc: 9.4.4 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install prerequisites | |
run: | | |
bash .github/scripts/brew.sh git coreutils llvm@13 autoconf automake | |
echo PATH="$HOME/.brew/bin:$HOME/.brew/sbin:$HOME/.brew/opt/llvm@13/bin:$PATH" >> "$GITHUB_ENV" | |
echo CC="$HOME/.brew/opt/llvm@13/bin/clang" >> "$GITHUB_ENV" | |
echo CXX="$HOME/.brew/opt/llvm@13/bin/clang++" >> "$GITHUB_ENV" | |
echo LD=ld >> "$GITHUB_ENV" | |
echo AR="$HOME/.brew/opt/llvm@13/bin/llvm-ar" >> "$GITHUB_ENV" | |
echo RANLIB="$HOME/.brew/opt/llvm@13/bin/llvm-ranlib" >> "$GITHUB_ENV" | |
- uses: haskell/ghcup-setup@v1 | |
with: | |
ghc: ${{ matrix.ghc }} | |
cabal: latest | |
- name: Run build | |
run: | | |
cabal update | |
cabal test | |
freebsd: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- os: [self-hosted, FreeBSD, X64] | |
ghc: 9.4.8 | |
- os: [self-hosted, FreeBSD, X64] | |
ghc: 9.6.4 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install prerequisites | |
run: | | |
sudo pkg install -y curl gcc gmp gmake ncurses perl5 libffi libiconv git bash misc/compat10x misc/compat11x misc/compat12x gmake llvm14 | |
- uses: haskell/ghcup-setup@v1 | |
with: | |
ghc: ${{ matrix.ghc }} | |
cabal: latest | |
- name: Run build | |
run: | | |
cabal update | |
cabal test | |
cabal bench |