aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2019-09-15 12:10:12 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2019-09-15 12:10:48 -0700
commitf580da203382efbb3c1cc8da37eacd27025034d7 (patch)
tree84cb0d465026c605fbd710cdc03189b0f0644d8f
parent51728ce36fa2628fe2e5edd626ddc4d9d7c17833 (diff)
downloadpandoc-f580da203382efbb3c1cc8da37eacd27025034d7.tar.gz
GitHuB CI: turn off optimizations.
-rw-r--r--.github/workflows/haskell.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/haskell.yml b/.github/workflows/haskell.yml
index d2ee6bfd7..0e2c02c65 100644
--- a/.github/workflows/haskell.yml
+++ b/.github/workflows/haskell.yml
@@ -18,11 +18,11 @@ jobs:
run: |
export PATH=/opt/cabal/bin:/opt/ghc/bin:$PATH
cabal v2-update
- cabal v2-build --dependencies-only --enable-tests
+ cabal v2-build --dependencies-only --enable-tests --disable-optimization
- name: Build
run: |
export PATH=/opt/cabal/bin:/opt/ghc/bin:$PATH
- cabal v2-build --enable-tests
+ cabal v2-build --enable-tests --disable-optimization
- name: Run tests
run: |
export PATH=/opt/cabal/bin:/opt/ghc/bin:$PATH
@@ -41,8 +41,8 @@ jobs:
- name: Install dependencies
run: |
stack update
- stack test --dependencies-only
+ stack test --dependencies-only --fast
- name: Build and test
shell: cmd
run: |
- stack test
+ stack test --fast