aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2021-03-19 14:34:13 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2021-03-19 14:34:13 -0700
commitb0c8ba88a773e18581f088c5473351c7ba30af7e (patch)
treefc1c2c98058f75df4de2aec8714bd2a0f0fb8beb /.github
parent029de661f4fbd7320bd06dc658ec32b4119fb313 (diff)
downloadpandoc-b0c8ba88a773e18581f088c5473351c7ba30af7e.tar.gz
CI: test with different flags.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml12
1 files changed, 9 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index b9c5225f3..64dda5302 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -46,26 +46,32 @@ jobs:
- ghc: '8.0.2'
cabal: '2.2'
prefix: 'new-'
+ cabalopts: ''
testopts: ''
- ghc: '8.2.2'
cabal: '2.4'
prefix: 'v2-'
+ cabalopts: ''
testopts: ''
- ghc: '8.4.4'
cabal: '2.4'
prefix: 'v2-'
+ cabalopts: '-f-embed_data_files'
testopts: ''
- ghc: '8.6.5'
cabal: '3.2'
prefix: ''
+ cabalopts: ''
testopts: '--test-option=--hide-successes'
- ghc: '8.8.4'
cabal: '3.2'
prefix: ''
+ cabalopts: ''
testopts: '--test-option=--hide-successes'
- ghc: '8.10.2'
cabal: '3.2'
prefix: ''
+ cabalopts: '-ftrypandoc'
testopts: '--test-option=--hide-successes'
steps:
- uses: actions/checkout@v2
@@ -101,14 +107,14 @@ jobs:
- name: Install dependencies
run: |
cabal ${{ matrix.versions.prefix }}update
- cabal ${{ matrix.versions.prefix }}build --dependencies-only --enable-tests --disable-optimization
+ cabal ${{ matrix.versions.prefix }}build ${{ matrix.versions.cabalopts }} --dependencies-only --enable-tests --disable-optimization
- name: Build and test
run: |
- cabal ${{ matrix.versions.prefix }}build --enable-tests --disable-optimization 2>&1 | tee build.log
+ cabal ${{ matrix.versions.prefix }}build ${{ matrix.versions.cabalopts }} --enable-tests --disable-optimization 2>&1 | tee build.log
# fail if warnings in local build
! grep -q ": *[Ww]arning:" build.log || exit 1
- cabal ${{ matrix.versions.prefix }}test --disable-optimization ${{ matrix.versions.testopts }}
+ cabal ${{ matrix.versions.prefix }}test ${{ matrix.versions.cabalopts }} --disable-optimization ${{ matrix.versions.testopts }}
windows: