-
Notifications
You must be signed in to change notification settings - Fork 71
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GitHub Actions backend: Builds aren't parallelized? #421
Comments
The Bash backend, judging from the source code, seems to suffer from a similar problem. Curiously, haskell-ci/src/HaskellCI/Bash.hs Line 44 in e991d01
But nowhere else. |
Yes. With The actual build is better to keep |
According to this, GitHub Actions virtual machines use 2-core CPUs, so
Absolutely. To be clear, when I say "parallelism", I'm exclusively referring to installation of dependencies, not building the main packages themselves. |
When building dependencies in
haskell-ci
–generated GitHub Actions configuration, the installation completely lacks any parallelism. (Example.) I wonder if the backend needs to use-j2
somewhere, like what the Travis backend uses?The text was updated successfully, but these errors were encountered: