2019-09-13 08:04:58 +02:00
|
|
|
name: Haskell CI
|
|
|
|
|
2019-09-16 19:45:13 +02:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths:
|
|
|
|
- '*'
|
2019-09-16 20:03:48 +02:00
|
|
|
- '.github/workflows/haskell.yml'
|
2019-09-16 19:45:13 +02:00
|
|
|
- '!MANUAL.txt'
|
|
|
|
- '!/doc/*'
|
|
|
|
- '!/tools/*'
|
|
|
|
- '!/linux/*'
|
|
|
|
- '!/macos/*'
|
|
|
|
- '!/windows/*'
|
|
|
|
- '!/man/*'
|
|
|
|
- '!AUTHORS.md'
|
|
|
|
- '!BUGS'
|
|
|
|
- '!CONTRIBUTING.md'
|
|
|
|
- '!README.md'
|
|
|
|
- '!INSTALL.md'
|
|
|
|
- '!COPYRIGHT'
|
|
|
|
- '!COPYING.md'
|
|
|
|
- '!README.template'
|
|
|
|
- '!RELEASE_CHECKLIST'
|
|
|
|
- '!appveyor.yml'
|
|
|
|
- '!changelog'
|
2019-09-13 08:04:58 +02:00
|
|
|
|
|
|
|
jobs:
|
2019-09-13 19:54:55 +02:00
|
|
|
linux:
|
2019-09-13 08:19:15 +02:00
|
|
|
|
2019-09-13 08:04:58 +02:00
|
|
|
runs-on: ubuntu-latest
|
2019-09-17 08:15:49 +02:00
|
|
|
strategy:
|
2019-09-17 18:24:47 +02:00
|
|
|
fail-fast: true
|
2019-09-17 08:15:49 +02:00
|
|
|
matrix:
|
2019-09-17 18:13:10 +02:00
|
|
|
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'
|
2019-09-17 18:24:47 +02:00
|
|
|
# - ghc: '8.8.1'
|
|
|
|
# cabal: '3.0'
|
2019-09-13 08:04:58 +02:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
2019-09-13 08:29:35 +02:00
|
|
|
- name: Install recent cabal/ghc
|
2019-09-13 18:24:14 +02:00
|
|
|
run: |
|
|
|
|
sudo add-apt-repository ppa:hvr/ghc
|
|
|
|
sudo apt-get update
|
2019-09-17 18:13:10 +02:00
|
|
|
sudo apt-get install ghc-${{ matrix.versions.ghc }} cabal-install-${{ matrix.versions.cabal }}
|
2019-09-13 08:04:58 +02:00
|
|
|
- name: Install dependencies
|
2019-09-13 18:24:14 +02:00
|
|
|
run: |
|
2019-09-13 18:26:47 +02:00
|
|
|
export PATH=/opt/cabal/bin:/opt/ghc/bin:$PATH
|
2019-09-13 18:24:14 +02:00
|
|
|
cabal v2-update
|
2019-09-16 03:12:12 +02:00
|
|
|
cabal v2-build --dependencies-only --enable-tests
|
2019-09-17 08:15:49 +02:00
|
|
|
- name: Build and test
|
2019-09-13 18:24:14 +02:00
|
|
|
run: |
|
2019-09-13 18:26:47 +02:00
|
|
|
export PATH=/opt/cabal/bin:/opt/ghc/bin:$PATH
|
2019-09-17 08:15:49 +02:00
|
|
|
cabal v2-install --enable-tests --run-tests 2>&1 | tee build.log
|
|
|
|
# fail if warnings in local build
|
|
|
|
! grep -q "[Ww]arning:" build.log
|
2019-09-16 18:48:57 +02:00
|
|
|
|
|
|
|
# ARTIFACTS: Currently disabled. The executables are large and
|
|
|
|
# if we do produce artifacts, we should zip them. We also
|
2019-09-17 08:15:49 +02:00
|
|
|
# might consider doing this only nightly and stripping.
|
2019-09-16 18:48:57 +02:00
|
|
|
# The code is included below in case we want to re-enable it.
|
|
|
|
#
|
|
|
|
# - name: Install artifact
|
|
|
|
# run: |
|
|
|
|
# export PATH=/opt/cabal/bin:/opt/ghc/bin:$PATH
|
|
|
|
# mkdir -p ./artifacts
|
|
|
|
# for f in $(find dist-newstyle -name 'pandoc*' -type f -executable); do cp $f ./artifacts/; done
|
|
|
|
# - uses: actions/upload-artifact@master
|
|
|
|
# with:
|
|
|
|
# name: pandoc-linux
|
|
|
|
# path: ./artifacts/pandoc
|
2019-09-13 19:54:55 +02:00
|
|
|
|
|
|
|
windows:
|
|
|
|
|
|
|
|
runs-on: windows-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Install stack
|
|
|
|
shell: cmd
|
|
|
|
run: |
|
|
|
|
choco install haskell-stack
|
2019-09-14 19:47:29 +02:00
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
stack update
|
2019-09-16 03:12:12 +02:00
|
|
|
stack test --dependencies-only
|
2019-09-13 19:54:55 +02:00
|
|
|
- name: Build and test
|
|
|
|
shell: cmd
|
|
|
|
run: |
|
2019-09-16 03:12:12 +02:00
|
|
|
stack test
|
2019-09-17 06:44:54 +02:00
|
|
|
|
|
|
|
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
|
2019-09-17 07:03:47 +02:00
|
|
|
tar xzvf stack.tar.gz --strip-components=1 'stack*/stack'
|
2019-09-17 06:44:54 +02:00
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
2019-09-17 07:03:47 +02:00
|
|
|
./stack update
|
|
|
|
./stack test --dependencies-only
|
2019-09-17 06:44:54 +02:00
|
|
|
- name: Build and test
|
|
|
|
run: |
|
2019-09-17 07:03:47 +02:00
|
|
|
./stack test
|