-
Notifications
You must be signed in to change notification settings - Fork 3.5k
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
GH-36837: [CI][RPM] Use multi-cores to install gems #36838
Conversation
@github-actions crossbow submit almalinux-* amazon-linux-* centos-* |
|
Revision: 8c2d871 Submitted crossbow builds: ursacomputing/crossbow @ actions-6a1e2f84f7 |
+1 |
After merging your PR, Conbench analyzed the 6 benchmarking runs that have been run so far on merge-commit 2a9c8b1. There were 3 benchmark results indicating a performance regression:
The full Conbench report has more details. It also includes information about possible false positives for unstable benchmarks that are known to sometimes produce them. |
### Rationale for this change We may reduce test time by using multi-cores to install gems. ### What changes are included in this PR? `gem install` with `MAKEFLAGS=-j$(nproc)` uses multi-cores when building extension libraries. ### Are these changes tested? Yes. ### Are there any user-facing changes? No. * Closes: apache#36837 Authored-by: Sutou Kouhei <kou@clear-code.com> Signed-off-by: Sutou Kouhei <kou@clear-code.com>
### Rationale for this change We may reduce test time by using multi-cores to install gems. ### What changes are included in this PR? `gem install` with `MAKEFLAGS=-j$(nproc)` uses multi-cores when building extension libraries. ### Are these changes tested? Yes. ### Are there any user-facing changes? No. * Closes: apache#36837 Authored-by: Sutou Kouhei <kou@clear-code.com> Signed-off-by: Sutou Kouhei <kou@clear-code.com>
Rationale for this change
We may reduce test time by using multi-cores to install gems.
What changes are included in this PR?
gem install
withMAKEFLAGS=-j$(nproc)
uses multi-cores when building extension libraries.Are these changes tested?
Yes.
Are there any user-facing changes?
No.