diff options
author | John MacFarlane <jgm@berkeley.edu> | 2019-03-27 08:10:42 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2019-03-27 08:10:42 -0700 |
commit | 8358f6b94e810e9f7efc600d80271c0ddbd70b15 (patch) | |
tree | 76c65c78eb178cfe19026dac23224f755b73061b /.circleci | |
parent | 2c3b8cd6d29c057e0088a15e7ee5b70eba5e7b79 (diff) | |
download | pandoc-8358f6b94e810e9f7efc600d80271c0ddbd70b15.tar.gz |
circleci config - don't use 'all' for cabal test.
Diffstat (limited to '.circleci')
-rw-r--r-- | .circleci/config.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 317a3b4dc..4baf3cdb5 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -65,8 +65,8 @@ commands: # us to use -Werror for just local build: # https://github.com/haskell/cabal/issues/4247 ! grep -q "warning:" build.log - cabal v2-test -w ghc-<< parameters.ghcversion >> -j2 --ghc-options="${GHC_OPTS}" all - cabal v2-haddock -w ghc-<< parameters.ghcversion >> -j2 --ghc-options="${GHC_OPTS}" all + cabal v2-test -w ghc-<< parameters.ghcversion >> -j2 --ghc-options="${GHC_OPTS}" + cabal v2-haddock -w ghc-<< parameters.ghcversion >> -j2 --ghc-options="${GHC_OPTS}" cabal check - *save |