Skip to content
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

Fix Ruby install for high amount of CPU cores in host #1085

Merged
merged 1 commit into from
Dec 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Unreleased


- Fix Ruby installation with high amount of CPU cores ([#1084](https://github.com/opendevstack/ods-quickstarters/issues/1084))
- Update OS packages by default and bump gitleaks version ([#1049](https://github.com/opendevstack/ods-quickstarters/issues/1049))
- Install java 17 devel only in scala and jdk agents ([#1057](https://github.com/opendevstack/ods-quickstarters/pull/1057))
- Update Angular, Ionic and Typescript Quickstarters ([#1033](https://github.com/opendevstack/ods-quickstarters/issues/1033))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ RUN cd /opt \
&& git clone https://github.com/rbenv/ruby-build.git /opt/rbenv/plugins/ruby-build \
&& echo 'export PATH="/opt/rbenv/plugins/ruby-build/bin:$PATH"' >> ~/.bash_profile \
&& source ~/.bash_profile \
&& rbenv install $RUBY_VERSION \
&& MAKE_OPTS='-j 4' rbenv install $RUBY_VERSION \
&& rbenv global $RUBY_VERSION \
&& gem install bundler -v $BUNDLER_VERSION \
&& RBENV_VERSION=$RUBY_VERSION gem install bundler -v $BUNDLER_VERSION \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ RUN cd /opt \
&& git clone https://github.com/rbenv/ruby-build.git /opt/rbenv/plugins/ruby-build \
&& echo 'export PATH="/opt/rbenv/plugins/ruby-build/bin:$PATH"' >> ~/.bash_profile \
&& source ~/.bash_profile \
&& rbenv install $RUBY_VERSION \
&& MAKE_OPTS='-j 4' rbenv install $RUBY_VERSION \
&& rbenv global $RUBY_VERSION \
&& gem install bundler -v $BUNDLER_VERSION \
&& RBENV_VERSION=$RUBY_VERSION gem install bundler -v $BUNDLER_VERSION \
Expand Down
Loading