Skip to content

Commit

Permalink
Enable multiple cores in haskell GHA
Browse files Browse the repository at this point in the history
  • Loading branch information
carbolymer committed Sep 6, 2024
1 parent a3afe86 commit 7598785
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/haskell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,14 +134,14 @@ jobs:

# Now we build.
- name: Build all
run: cabal build all --enable-tests
run: cabal build all --enable-tests -j --ghc-option=-j4

- name: Run tests
env:
TMPDIR: ${{ runner.temp }}
TMP: ${{ runner.temp }}
KEEP_WORKSPACE: 1
run: cabal test all --enable-tests --test-show-details=direct -j1
run: cabal test all --enable-tests --test-show-details=direct -j

# Uncomment the following back in for debugging. Remember to launch a `pwsh` from
# the tmux session to debug `pwsh` issues. And be reminded that the `/msys2` and
Expand Down

0 comments on commit 7598785

Please sign in to comment.