aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2019-11-27 21:32:17 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2019-11-27 21:32:17 -0800
commitd88015e03e2010c3209d549697e1c4f4f5c903a2 (patch)
treecff3ba9bf7d9031d12add385a8331e42123a6ed9 /.github/workflows/ci.yml
parent14ed6fa141a7213e652829d43692948680b5c8fe (diff)
downloadpandoc-d88015e03e2010c3209d549697e1c4f4f5c903a2.tar.gz
Revert "Don't do parallel build with cabal."
This reverts commit bd175d13b6004086ccd3862822f97c7f090cadb4.
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r--.github/workflows/ci.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index bfceec2ca..a0b7d1c74 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -63,10 +63,10 @@ jobs:
- 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 -j1 --disable-optimization 2>&1 | tee build.log
+ 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 -j1 --disable-optimization
+ cabal v2-test --disable-optimization
windows: