-
Notifications
You must be signed in to change notification settings - Fork 682
Appveyor speedup #1309
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
Appveyor speedup #1309
Conversation
Looks like AppVeyor has new enough packages for our needs. Cuts CI build time by 5 minutes.
|
Thanks! Is -j okay or will worse things? Fine with me. |
|
I’m not sure either, builds seem to vary by several minutes on each job between runs, so it is hard to measure if it is making things better or worse. |
|
Maybe just |
|
This thread suggests that there are two cores in the VM, so I guess |
|
Even with one core, -j2 runs faster than single-process. That's because IO and CPU tasks will be interleaved, instead of stalled for each other. |
|
-j3 maybe then. |
|
Trying that now. |
|
|
Cuts a few minutes here and there, should make things a bit faster.