aboutsummaryrefslogtreecommitdiff
path: root/.circleci
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2019-03-26 22:25:44 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2019-03-26 22:25:44 -0700
commitd086a190d5b8ddee9a41eb93a890b3c2cb1182dc (patch)
tree994728e126072a396b67b64bf737c4dbd2fadbd6 /.circleci
parent542272a52acc9c5e051b0e7336ab97572f60b461 (diff)
downloadpandoc-d086a190d5b8ddee9a41eb93a890b3c2cb1182dc.tar.gz
circleci - explicitly specify ghc version for cabal builds.
Diffstat (limited to '.circleci')
-rw-r--r--.circleci/config.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 2ddb93082..96ea2f8b2 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -57,16 +57,16 @@ commands:
cd ${TMPDIR}
tar xvzf *.tar.gz
cd *
- cabal v2-build -j2 --dependencies-only --enable-tests --ghc-options="${GHC_OPTS}" all
- cabal v2-build -j2 --enable-tests --ghc-options="${GHC_OPTS}" all 2>build.log
+ cabal v2-build -w ghc-<< parameters.ghcversion >> -j2 --dependencies-only --enable-tests --ghc-options="${GHC_OPTS}" all
+ cabal v2-build -w ghc-<< parameters.ghcversion >> -j2 --enable-tests --ghc-options="${GHC_OPTS}" all 2>build.log
cat build.log
# fail if we had warnings in local build
# this is to work around the fact that cabal v2 doesn't allow
# us to use -Werror for just local build:
# https://github.com/haskell/cabal/issues/4247
! grep -q "warning:" build.log
- cabal v2-test --ghc-options="${GHC_OPTS}" 2>build.log
- cabal v2-haddock --ghc-options="${GHC_OPTS}"
+ cabal v2-test -w ghc-<< parameters.ghcversion >> --ghc-options="${GHC_OPTS}" 2>build.log
+ cabal v2-haddock -w ghc-<< parameters.ghcversion >> --ghc-options="${GHC_OPTS}"
cabal check
- *save