File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ jobs:
112112 # this should be a no-op, but if the cache key was not found we need to build stuff so we can
113113 # cache it for the next step.
114114 - name : Install dependencies
115- run : cabal build all --enable-tests --only-dependencies -j --ghc-option=-j4
115+ run : cabal build all --enable-tests --only-dependencies
116116
117117 # Always store the cabal cache.
118118 # This can fail (benign failure) if there is already a hash at that key.
@@ -142,7 +142,7 @@ jobs:
142142 TMP : ${{ runner.temp }}
143143 KEEP_WORKSPACE : 1
144144 CREATE_GOLDEN_FILES : 1
145- run : cabal test all --enable-tests --test-show-details=direct -j1
145+ run : cabal test all --enable-tests --test-show-details=direct
146146
147147 # We want this check to run first because $(git ls-files -m) (see below) returns both
148148 # modified files *and* deleted files. So we want to fail on deleted files first.
Original file line number Diff line number Diff line change @@ -48,9 +48,12 @@ package formatting
4848 flags : +no-double-conversion
4949
5050tests : True
51-
5251test-show-details : direct
5352
53+ -- enable parallel builds
54+ jobs : $ncpus
55+ semaphore : True
56+
5457-- Always write GHC env files, because they are needed for ghci.
5558write-ghc-environment-files : always
5659
You can’t perform that action at this time.
0 commit comments