Skip to content

Commit

Permalink
Don't use parallel builds in the integration tests
Browse files Browse the repository at this point in the history
The self-exec method will not work anyway, and it interferes with
getting build output in the stdout log, since individual packages go to
per-package log files (which we cannot see on travis for example).
  • Loading branch information
dcoutts committed May 26, 2016
1 parent e10d1d1 commit 83ef9db
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion cabal-install/tests/IntegrationTests2.hs
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,10 @@ mkProjectConfig (GhcPath ghcPath) =
mempty {
projectConfigShared = mempty {
projectConfigHcPath = maybeToFlag ghcPath
}
},
projectConfigBuildOnly = mempty {
projectConfigNumJobs = toFlag (Just 1)
}
}
where
maybeToFlag = maybe mempty toFlag
Expand Down

0 comments on commit 83ef9db

Please sign in to comment.