Fix ci #21
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: CI | |
on: | |
push: | |
branches: [ '*' ] | |
pull_request: | |
branches: [ master ] | |
schedule: | |
- cron: "0 5 * * 5" | |
defaults: { run: { shell: bash } } | |
jobs: | |
test-with-stack: | |
if: github.event.pull_request.head.repo.full_name != github.repository | |
name: Test with Stack | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macOS-latest, windows-latest] | |
resolver: [lts-12, lts-14, lts-16, lts-18, lts-19, lts-20, lts-21, nightly] | |
include: | |
- resolver: lts-12 | |
ghc: 8.4.4 | |
# stack-yaml: stack-extra-deps.yaml | |
- resolver: lts-14 | |
ghc: 8.6.5 | |
#stack-yaml: stack-coveralls.yaml | |
- resolver: lts-16 | |
ghc: 8.8.4 | |
# stack-yaml: stack-extra-deps.yaml | |
- resolver: lts-18 | |
ghc: 8.10.7 | |
- resolver: lts-19 | |
ghc: 9.0.2 | |
- resolver: lts-20 | |
ghc: 9.2.8 | |
- resolver: lts-21 | |
ghc: 9.4.8 | |
- resolver: lts-22 | |
ghc: 9.6.5 | |
- resolver: nightly # reports a problem with happy?! | |
ghc: 9.8.2 | |
exclude: | |
- resolver: lts-18 | |
os: windows-latest # Too buggy, occasional ghc crashes | |
env: | |
STACK_YAML: stack.yaml | |
STACK_ARGS: '--resolver ${{ matrix.resolver }} --system-ghc' | |
cache-version: v8 # bump up this version to invalidate currently stored cache | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: haskell-actions/setup@v2 | |
id: setup-haskell-cabal | |
name: Setup Haskell | |
with: | |
ghc-version: ${{ matrix.ghc }} | |
enable-stack: true | |
stack-version: 'latest' | |
cabal-version: 'latest' | |
- name: Cache | |
id: cache | |
uses: actions/cache@v3 | |
with: | |
path: | | |
${{ steps.setup-haskell-cabal.outputs.stack-root }} | |
.stack-work | |
key: ${{ runner.os }}-${{ matrix.resolver }}-${{ env.cache-version }} | |
restore-keys: | | |
${{ runner.os }}-${{ matrix.resolver }}-${{ env.cache-version }} | |
- name: Windows Cache | |
id: cache-windows | |
uses: actions/cache@v2 | |
if: matrix.os == 'windows-latest' | |
with: | |
path: | | |
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: Reset modtime | |
run: | | |
set -ex | |
curl -sSL https://raw.githubusercontent.com/lehins/utils/master/haskell/git-modtime/git-modtime.hs -o git-modtime.hs | |
runhaskell -- git-modtime.hs -f .stack-work-root/tree-contents.txt | |
- name: Build | |
env: | |
COVERALLS_TOKEN: ${{ secrets.COVERALLS_TOKEN }} | |
run: | | |
set -ex | |
if [ "${{ matrix.os }}.${{ matrix.resolver }}" == "ubuntu-latest.lts-19" ] && [ -n "${COVERALLS_TOKEN}" ]; then | |
stack $STACK_ARGS test :tests --coverage --no-run-tests --haddock --no-haddock-deps | |
else | |
stack $STACK_ARGS test --no-run-tests --haddock --no-haddock-deps | |
fi | |
- name: Test | |
env: | |
COVERALLS_TOKEN: ${{ secrets.COVERALLS_TOKEN }} | |
run: | | |
set -ex | |
if [ "${{ matrix.os }}.${{ matrix.resolver }}" == "ubuntu-latest.lts-19" ] && [ -n "${COVERALLS_TOKEN}" ]; then | |
stack $STACK_ARGS test :tests --coverage | |
stack $STACK_ARGS hpc report --all | |
curl -L https://github.com/rubik/stack-hpc-coveralls/releases/download/v0.0.7.0/shc-Linux-X64.tar.bz2 | tar xj shc | |
./shc --repo-token="$COVERALLS_TOKEN" --partial-coverage --fetch-coverage combined custom | |
else | |
stack $STACK_ARGS test :doctests | |
stack $STACK_ARGS test :tests | |
fi | |
test-with-cabal: | |
name: Test with Cabal | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- { cabal: "3.10", os: ubuntu-latest, ghc: "8.0.2" } | |
- { cabal: "3.10", os: ubuntu-latest, ghc: "8.2.2" } | |
- { cabal: "3.10", os: ubuntu-latest, ghc: "9.0.2" } | |
- { cabal: "3.10", os: ubuntu-latest, ghc: "9.2.8" } | |
- { cabal: "3.10", os: ubuntu-latest, ghc: "9.4.8" } | |
- { cabal: "3.10", os: ubuntu-latest, ghc: "9.6.5" } | |
- { cabal: "3.10", os: ubuntu-latest, ghc: "9.8.2" } | |
- { cabal: "3.10", os: ubuntu-latest, ghc: "9.10.1" } | |
- { cabal: "3.10", os: windows-latest, ghc: "8.0.2" } | |
- { cabal: "3.10", os: windows-latest, ghc: "8.2.2" } | |
- { cabal: "3.10", os: windows-latest, ghc: "9.0.2" } | |
- { cabal: "3.10", os: windows-latest, ghc: "9.2.8" } | |
- { cabal: "3.10", os: windows-latest, ghc: "9.4.8" } | |
- { cabal: "3.10", os: windows-latest, ghc: "9.6.5" } | |
- { cabal: "3.10", os: windows-latest, ghc: "9.8.2" } | |
- { cabal: "3.10", os: windows-latest, ghc: "9.10.1" } | |
- { cabal: "3.10", os: macOS-13, ghc: "8.0.2" } | |
- { cabal: "3.10", os: macOS-13, ghc: "8.2.2" } | |
- { cabal: "3.10", os: macOS-latest, ghc: "9.0.2" } | |
- { cabal: "3.10", os: macOS-latest, ghc: "9.2.8" } | |
- { cabal: "3.10", os: macOS-latest, ghc: "9.4.8" } | |
- { cabal: "3.10", os: macOS-latest, ghc: "9.6.5" } | |
- { cabal: "3.10", os: macOS-latest, ghc: "9.8.2" } | |
- { cabal: "3.10", os: macOS-latest, ghc: "9.10.1" } | |
env: | |
cache-version: v2 # bump up this version to invalidate currently stored cache | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: haskell-actions/setup@v2 | |
id: setup-haskell-cabal | |
name: Setup Haskell | |
with: | |
ghc-version: ${{ matrix.ghc }} | |
cabal-version: ${{ matrix.cabal }} | |
- name: Cache Cabal Store | |
id: cache | |
uses: actions/cache@v3 | |
with: | |
path: | | |
${{ steps.setup-haskell-cabal.outputs.cabal-store }} | |
dist-newstyle | |
key: cabal-${{ runner.os }}-${{ matrix.ghc }}-${{ env.cache-version }} | |
restore-keys: | | |
cabal-${{ runner.os }}-${{ matrix.ghc }}-${{ env.cache-version }} | |
- name: Build | |
run: | | |
set -ex | |
cabal configure --haddock-all --enable-tests | |
cabal build all --write-ghc-environment-files=always | |
- name: Test | |
run: | | |
set -ex | |
cabal test all | |
- name: Check Cabal Files | |
run: | | |
set -ex | |
cabal -vnormal check |