Merge pull request #145 from Bodigrim/tasty-1.5 #225
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: random-CI | |
on: | |
push: | |
branches: [ '*' ] | |
pull_request: | |
branches: [ master ] | |
defaults: { run: { shell: bash } } | |
jobs: | |
build-cabal: | |
name: CI-cabal | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
# Linux | |
- { os: ubuntu-latest, ghc: "8.0.2" } | |
- { os: ubuntu-latest, ghc: "8.2.2" } | |
- { os: ubuntu-latest, ghc: "8.4.4" } | |
- { os: ubuntu-latest, ghc: "8.6.5" } | |
- { os: ubuntu-latest, ghc: "8.8.4" } | |
- { os: ubuntu-latest, ghc: "8.10.7" } | |
- { os: ubuntu-latest, ghc: "9.0.2" } | |
- { os: ubuntu-latest, ghc: "9.2.7" } | |
- { os: ubuntu-latest, ghc: "9.4.4" } | |
- { os: ubuntu-latest, ghc: "9.6.1" } | |
# MacOS | |
- { os: macOS-latest, ghc: "8.0.2" } | |
- { os: macOS-latest, ghc: "8.2.2" } | |
- { os: macOS-latest, ghc: "8.4.4" } | |
- { os: macOS-latest, ghc: "8.6.5" } | |
- { os: macOS-latest, ghc: "8.8.4" } | |
- { os: macOS-latest, ghc: "8.10.7" } | |
- { os: macOS-latest, ghc: "9.0.2" } | |
- { os: macOS-latest, ghc: "9.2.7" } | |
- { os: macOS-latest, ghc: "9.4.4" } | |
- { os: macOS-latest, ghc: "9.6.1" } | |
# Windows | |
- { os: windows-latest, ghc: "8.0.2" } | |
- { os: windows-latest, ghc: "8.2.2" } | |
- { os: windows-latest, ghc: "8.4.4" } | |
- { os: windows-latest, ghc: "8.6.5" } | |
- { os: windows-latest, ghc: "8.8.4" } | |
- { os: windows-latest, ghc: "8.10.7" } | |
- { os: windows-latest, ghc: "9.0.2" } | |
- { os: windows-latest, ghc: "9.2.7" } | |
- { os: windows-latest, ghc: "9.4.4" } | |
- { os: windows-latest, ghc: "9.6.1" } | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: haskell/actions/setup@v2 | |
id: setup-haskell-cabal | |
name: Setup Haskell | |
with: | |
ghc-version: ${{ matrix.ghc }} | |
- name: Update cabal package database | |
run: cabal update | |
- uses: actions/cache@v3 | |
name: Cache cabal stuff | |
with: | |
path: | | |
${{ steps.setup-haskell-cabal.outputs.cabal-store }} | |
dist-newstyle | |
key: ${{ runner.os }}-${{ matrix.ghc }} | |
- name: Build and test | |
run: | | |
cabal sdist -z -o . | |
cabal get random-*.tar.gz | |
cd random-*/ | |
echo $EXTRA_FLAGS | |
cabal $EXTRA_FLAGS configure --haddock-all --enable-tests --enable-benchmarks --benchmark-option=-l | |
cabal $EXTRA_FLAGS build all --write-ghc-environment-files=always | |
build-stack: | |
name: CI-stack | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
resolver: [nightly, lts-20, lts-19, lts-18, lts-16, lts-14, lts-12, lts-11] | |
include: | |
- resolver: lts-11 | |
ghc: 8.2.2 | |
stack-yaml: stack-old.yaml | |
- resolver: lts-12 | |
ghc: 8.4.4 | |
stack-yaml: stack-old.yaml | |
- resolver: lts-14 | |
stack-yaml: stack-coveralls.yaml | |
- resolver: lts-16 | |
ghc: 8.8.4 | |
stack-yaml: stack-old.yaml | |
- resolver: lts-18 | |
ghc: 8.10.7 | |
stack-yaml: stack.yaml | |
- resolver: lts-19 | |
ghc: 9.0.2 | |
stack-yaml: stack.yaml | |
- resolver: lts-20 | |
ghc: 9.2.7 | |
stack-yaml: stack.yaml | |
- resolver: nightly | |
stack-yaml: stack.yaml | |
# Latest stable for MacOS: ghc-8.8.4 | |
- resolver: lts-16 | |
os: macos-latest | |
stack-yaml: stack-old.yaml | |
# Latest stable for Windows: ghc-8.6.4 | |
- resolver: lts-14 | |
os: windows-latest | |
stack-yaml: stack-coveralls.yaml | |
env: | |
STACK_YAML: stack.yaml | |
STACK_ARGS: '--resolver ${{ matrix.resolver }} --system-ghc' | |
cache-version: v5 # bump up this version to invalidate currently stored cache | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: haskell/actions/setup@v2 | |
id: setup-haskell-stack | |
name: Setup Haskell | |
with: | |
ghc-version: ${{ matrix.ghc }} | |
enable-stack: true | |
stack-version: 'latest' | |
cabal-version: '3.10' | |
- name: Cache | |
id: cache | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.stack | |
.stack-work | |
key: ${{ runner.os }}-${{ matrix.resolver }}-${{ env.cache-version }} | |
restore-keys: | | |
${{ runner.os }}-${{ matrix.resolver }}-${{ env.cache-version }} | |
# Executable files somehow become incompatible after restoring on MacOS from a | |
# previous build, so it needs to be cleaned up. This is very inconvenient and will | |
# need to be fixed. | |
- name: MacOS workaround for failure due to setup-exe-cache | |
if: steps.cache.outputs.cache-hit == 'true' && matrix.os == 'macos-latest' | |
run: | | |
rm -r ~/.stack/setup-exe-cache | |
rm -r .stack-work | |
- name: Windows Cache | |
id: cache-windows | |
uses: actions/cache@v3 | |
if: matrix.os == 'windows-latest' | |
with: | |
path: | | |
C:\\Users\\RUNNER~1\\AppData\\Roaming\\stack | |
C:\\Users\\RUNNER~1\\AppData\\Local\\Programs\\stack | |
key: ${{ runner.os }}-${{ matrix.resolver }}-programs-${{ env.cache-version }} | |
restore-keys: | | |
${{ runner.os }}-${{ matrix.resolver }}-programs-${{ env.cache-version }} | |
- name: Install Stack and GHC | |
run: | | |
set -ex | |
curl -sSL https://get.haskellstack.org/ | sh -s - -f | |
curl -sSL https://raw.githubusercontent.com/lehins/utils/c426e74aa129b7cb14e83305fd2639ccc41b03cd/haskell/git-modtime/git-modtime.hs -o git-modtime.hs | |
[ -n "${{ matrix.ghc }}" ] && [ "${{ matrix.os }}" == "ubuntu-latest" ] && STACK_ARGS="$STACK_ARGS --system-ghc" | |
[ -n "${{ matrix.stack-yaml }}" ] && STACK_YAML=${{ matrix.stack-yaml }} | |
# git-modtime.hs updates modification time of files to the latest commit time that | |
# a file was modified in. This ensures that stack does not rebuild unchanged | |
# files. More info in this SO answer: | |
# https://stackoverflow.com/questions/60906336/stack-haskell-build-cache-of-source-files-with-github-actions/61178945#61178945 | |
# Windows is confused about stack's default user directory | |
stack $STACK_ARGS runghc -- git-modtime.hs -f .stack-work/tree-contents.txt | |
- name: Tests | |
env: | |
COVERALLS_TOKEN: ${{ secrets.COVERALLS_TOKEN }} | |
run: | | |
set -ex | |
[ -n "${{ matrix.ghc }}" ] && [ "${{ matrix.os }}" == "ubuntu-latest" ] && STACK_ARGS="$STACK_ARGS --system-ghc" | |
[ -n "${{ matrix.stack-yaml }}" ] && STACK_YAML=${{ matrix.stack-yaml }} | |
if [ "${{ matrix.os }}.${{ matrix.resolver }}" == "ubuntu-latest.lts-14" ]; then | |
stack $STACK_ARGS test random:spec random:legacy-test --coverage --haddock --no-haddock-deps | |
stack $STACK_ARGS hpc report --all | |
# Upload coverage report only when the token is available. | |
if [ -n "${COVERALLS_TOKEN}" ]; then | |
curl -L https://github.com/rubik/stack-hpc-coveralls/releases/download/v0.0.6.1/shc-linux-x64-8.8.4.tar.bz2 | tar xj shc | |
./shc --repo-token="$COVERALLS_TOKEN" --partial-coverage --fetch-coverage combined custom | |
fi | |
elif [ "${{ matrix.resolver }}" == "lts-6" ]; then | |
# Inspection tests are not supported by pre ghc-8.0 compiler | |
stack $STACK_ARGS test random:spec random:legacy-test --bench --no-run-benchmarks --haddock --no-haddock-deps | |
else | |
stack $STACK_ARGS test --bench --no-run-benchmarks --haddock --no-haddock-deps | |
fi | |
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 | |
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: | | |
source ~/.ghcup/env | |
cabal update | |
cabal test | |
# We use github.com/haskell self-hosted runners for ARM testing. | |
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@v3 | |
- if: matrix.arch == 'arm32v7' | |
uses: docker://hasufell/arm32v7-ubuntu-haskell:focal | |
name: Run build (arm32v7 linux) | |
with: | |
args: sh -c "cabal update && cabal test" | |
- if: matrix.arch == 'arm64v8' | |
uses: docker://hasufell/arm64v8-ubuntu-haskell:focal | |
name: Run build (arm64v8 linux) | |
with: | |
args: sh -c "cabal update && cabal test" |