173 lines
4.8 KiB
YAML
173 lines
4.8 KiB
YAML
name: CI tests
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- '*'
|
|
- '!rc/*'
|
|
ignore-paths:
|
|
- 'doc/**'
|
|
- 'MANUAL.txt'
|
|
- '*.md'
|
|
- 'RELEASE_CHECKLIST'
|
|
- 'BUGS'
|
|
- 'changelog'
|
|
- 'README.template'
|
|
- 'appveyor.yml'
|
|
- 'tools/**'
|
|
- 'linux/**'
|
|
- 'macos/**'
|
|
- 'windows/**'
|
|
- 'man/**'
|
|
pull_request:
|
|
ignore-paths:
|
|
- 'doc/**'
|
|
- 'MANUAL.txt'
|
|
- '*.md'
|
|
- 'RELEASE_CHECKLIST'
|
|
- 'BUGS'
|
|
- 'changelog'
|
|
- 'README.template'
|
|
- 'appveyor.yml'
|
|
- 'tools/**'
|
|
- 'linux/**'
|
|
- 'macos/**'
|
|
- 'windows/**'
|
|
- 'man/**'
|
|
|
|
jobs:
|
|
linux:
|
|
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: true
|
|
matrix:
|
|
versions:
|
|
- ghc: '8.0.2'
|
|
cabal: '2.4'
|
|
- ghc: '8.2.2'
|
|
cabal: '2.4'
|
|
- ghc: '8.4.4'
|
|
cabal: '2.4'
|
|
- ghc: '8.6.5'
|
|
cabal: '2.4'
|
|
- ghc: '8.8.1'
|
|
cabal: '3.0'
|
|
- ghc: '8.10.1'
|
|
cabal: '3.2'
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
|
|
# declare/restore cached things
|
|
# caching doesn't work for scheduled runs yet
|
|
# https://github.com/actions/cache/issues/63
|
|
|
|
- name: Cache cabal global package db
|
|
id: cabal-global
|
|
uses: actions/cache@v1
|
|
with:
|
|
path: ~/.cabal
|
|
key: ${{ runner.os }}-${{ matrix.versions.ghc }}-${{ matrix.versions.cabal }}-cabal-global-${{ hashFiles('cabal.project') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-${{ matrix.versions.ghc }}-${{ matrix.versions.cabal }}-cabal-global
|
|
|
|
- name: Cache cabal work
|
|
id: cabal-local
|
|
uses: actions/cache@v1
|
|
with:
|
|
path: dist-newstyle
|
|
key: ${{ runner.os }}-${{ matrix.versions.ghc }}-${{ matrix.versions.cabal }}-cabal-local
|
|
restore-keys: |
|
|
${{ runner.os }}-${{ matrix.versions.ghc }}-${{ matrix.versions.cabal }}-cabal-local
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
export PATH=/opt/cabal/${{ matrix.versions.cabal }}/bin:/opt/ghc/${{ matrix.versions.ghc }}/bin:$PATH
|
|
cabal v2-update
|
|
cabal v2-build --dependencies-only --enable-tests --disable-optimization
|
|
- name: Build and test
|
|
run: |
|
|
export PATH=/opt/cabal/${{ matrix.versions.cabal }}/bin:/opt/ghc/${{ matrix.versions.ghc }}/bin:$PATH
|
|
cabal v2-build --enable-tests --disable-optimization 2>&1 | tee build.log
|
|
# fail if warnings in local build
|
|
! grep -q ": *[Ww]arning:" build.log || exit 1
|
|
cabal v2-test --disable-optimization --test-option=--hide-successes
|
|
|
|
windows:
|
|
|
|
runs-on: windows-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Install stack
|
|
shell: cmd
|
|
run: |
|
|
choco install haskell-stack
|
|
|
|
# declare/restore cached things
|
|
# caching doesn't work for scheduled runs yet
|
|
# https://github.com/actions/cache/issues/63
|
|
|
|
- name: Cache stack global package db
|
|
id: stack-global-package-db
|
|
uses: actions/cache@v1
|
|
with:
|
|
path: C:\Users\runneradmin\AppData\Roaming\stack\
|
|
key: ${{ runner.os }}-appdata-roaming-stack-${{ hashFiles('**.yaml') }}
|
|
restore-keys: ${{ runner.os }}-appdata-roaming-stack
|
|
|
|
# stack's local package dbs for the project and each package
|
|
- name: Cache .stack-work
|
|
uses: actions/cache@v1
|
|
with:
|
|
path: .stack-work
|
|
key: ${{ runner.os }}-stack-work-${{ hashFiles('**.yaml') }}
|
|
restore-keys: ${{ runner.os }}-stack-work
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
stack update
|
|
stack test --dependencies-only --fast
|
|
- name: Build and test
|
|
shell: cmd
|
|
run: |
|
|
stack test --fast --test-arguments=--hide-successes
|
|
|
|
macos:
|
|
|
|
runs-on: macOS-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Install stack
|
|
run: |
|
|
curl -L https://get.haskellstack.org/stable/osx-x86_64.tar.gz -o stack.tar.gz
|
|
tar xzvf stack.tar.gz --strip-components=1 'stack*/stack'
|
|
|
|
# declare/restore cached things
|
|
# caching doesn't work for scheduled runs yet https://github.com/actions/cache/issues/63
|
|
|
|
- name: Cache stack global package db
|
|
id: stack-global
|
|
uses: actions/cache@v1
|
|
with:
|
|
path: ~/.stack
|
|
key: ${{ runner.os }}-stack-global-${{ hashFiles('**.yaml') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-stack-global
|
|
${{ runner.os }}-stack
|
|
|
|
# stack's local package db
|
|
- name: Cache .stack-work
|
|
uses: actions/cache@v1
|
|
with:
|
|
path: .stack-work
|
|
key: ${{ runner.os }}-stack-work
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
./stack update
|
|
./stack test --dependencies-only --fast
|
|
- name: Build and test
|
|
run: |
|
|
./stack test --fast --test-arguments=--hide-successes
|