Skip to content

Commit

Permalink
perf: Remove forced jobs params on bundle
Browse files Browse the repository at this point in the history
  • Loading branch information
jfloff committed Jul 29, 2024
1 parent 7490904 commit 2ce76c6
Show file tree
Hide file tree
Showing 21 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion 18-2.6.6/init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ fi
# if any changes to Gemfile occur between runs (e.g. if you mounted the
# host directory in the container), it will install changes before proceeding
if [ -f Gemfile ]; then
bundle check || bundle install --jobs 4 --retry 3
bundle check || bundle install --retry 3
fi

if [ "$RAILS_ENV" == "production" ]; then
Expand Down
2 changes: 1 addition & 1 deletion 20-2.6.10/init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ source /etc/profile.d/secret.sh
# if any changes to Gemfile occur between runs (e.g. if you mounted the
# host directory in the container), it will install changes before proceeding
if [ -f Gemfile ]; then
bundle check || bundle install --jobs 4 --retry 3
bundle check || bundle install --retry 3
fi

if [ "$RAILS_ENV" == "production" ]; then
Expand Down
2 changes: 1 addition & 1 deletion 20-2.6.6/init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ fi
# if any changes to Gemfile occur between runs (e.g. if you mounted the
# host directory in the container), it will install changes before proceeding
if [ -f Gemfile ]; then
bundle check || bundle install --jobs 4 --retry 3
bundle check || bundle install --retry 3
fi

if [ "$RAILS_ENV" == "production" ]; then
Expand Down
2 changes: 1 addition & 1 deletion 20-2.6.8/init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ fi
# if any changes to Gemfile occur between runs (e.g. if you mounted the
# host directory in the container), it will install changes before proceeding
if [ -f Gemfile ]; then
bundle check || bundle install --jobs 4 --retry 3
bundle check || bundle install --retry 3
fi

if [ "$RAILS_ENV" == "production" ]; then
Expand Down
2 changes: 1 addition & 1 deletion 20-2.6.9/init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ source /etc/profile.d/secret.sh
# if any changes to Gemfile occur between runs (e.g. if you mounted the
# host directory in the container), it will install changes before proceeding
if [ -f Gemfile ]; then
bundle check || bundle install --jobs 4 --retry 3
bundle check || bundle install --retry 3
fi

if [ "$RAILS_ENV" == "production" ]; then
Expand Down
2 changes: 1 addition & 1 deletion 20-2.7.4/init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ source /etc/profile.d/secret.sh
# if any changes to Gemfile occur between runs (e.g. if you mounted the
# host directory in the container), it will install changes before proceeding
if [ -f Gemfile ]; then
bundle check || bundle install --jobs 4 --retry 3
bundle check || bundle install --retry 3
fi

if [ "$RAILS_ENV" == "production" ]; then
Expand Down
2 changes: 1 addition & 1 deletion 20-2.7.5/init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ source /etc/profile.d/secret.sh
# if any changes to Gemfile occur between runs (e.g. if you mounted the
# host directory in the container), it will install changes before proceeding
if [ -f Gemfile ]; then
bundle check || bundle install --jobs 4 --retry 3
bundle check || bundle install --retry 3
fi

if [ "$RAILS_ENV" == "production" ]; then
Expand Down
2 changes: 1 addition & 1 deletion 20-2.7.6/init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ source /etc/profile.d/secret.sh
# if any changes to Gemfile occur between runs (e.g. if you mounted the
# host directory in the container), it will install changes before proceeding
if [ -f Gemfile ]; then
bundle check || bundle install --jobs 4 --retry 3
bundle check || bundle install --retry 3
fi

if [ "$RAILS_ENV" == "production" ]; then
Expand Down
2 changes: 1 addition & 1 deletion 20-2.7.7/init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ source /etc/profile.d/secret.sh
# if any changes to Gemfile occur between runs (e.g. if you mounted the
# host directory in the container), it will install changes before proceeding
if [ -f Gemfile ]; then
bundle check || bundle install --jobs 4 --retry 3
bundle check || bundle install --retry 3
fi

if [ "$RAILS_ENV" == "production" ]; then
Expand Down
2 changes: 1 addition & 1 deletion 20-2.7.8/init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ source /etc/profile.d/secret.sh
# if any changes to Gemfile occur between runs (e.g. if you mounted the
# host directory in the container), it will install changes before proceeding
if [ -f Gemfile ]; then
bundle check || bundle install --jobs 4 --retry 3
bundle check || bundle install --retry 3
fi

if [ "$RAILS_ENV" == "production" ]; then
Expand Down
2 changes: 1 addition & 1 deletion 20-3.0.2/init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ fi
# if any changes to Gemfile occur between runs (e.g. if you mounted the
# host directory in the container), it will install changes before proceeding
if [ -f Gemfile ]; then
bundle check || bundle install --jobs 4 --retry 3
bundle check || bundle install --retry 3
fi

if [ "$RAILS_ENV" == "production" ]; then
Expand Down
2 changes: 1 addition & 1 deletion 20-3.0.3/init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ fi
# if any changes to Gemfile occur between runs (e.g. if you mounted the
# host directory in the container), it will install changes before proceeding
if [ -f Gemfile ]; then
bundle check || bundle install --jobs 4 --retry 3
bundle check || bundle install --retry 3
fi

if [ "$RAILS_ENV" == "production" ]; then
Expand Down
2 changes: 1 addition & 1 deletion 20-3.1.2/init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ fi
# if any changes to Gemfile occur between runs (e.g. if you mounted the
# host directory in the container), it will install changes before proceeding
if [ -f Gemfile ]; then
bundle check || bundle install --jobs 4 --retry 3
bundle check || bundle install --retry 3
fi

if [ "$RAILS_ENV" == "production" ]; then
Expand Down
2 changes: 1 addition & 1 deletion 22-3.1.2/init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ fi
# if any changes to Gemfile occur between runs (e.g. if you mounted the
# host directory in the container), it will install changes before proceeding
if [ -f Gemfile ]; then
bundle check || bundle install --jobs 4 --retry 3
bundle check || bundle install --retry 3
fi

if [ "$RAILS_ENV" == "production" ]; then
Expand Down
2 changes: 1 addition & 1 deletion 22-3.1.4/init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ fi
# if any changes to Gemfile occur between runs (e.g. if you mounted the
# host directory in the container), it will install changes before proceeding
if [ -f Gemfile ]; then
bundle check || bundle install --jobs 4 --retry 3
bundle check || bundle install --retry 3
fi

if [ "$RAILS_ENV" == "production" ]; then
Expand Down
2 changes: 1 addition & 1 deletion 22-3.2.2/init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ fi
# if any changes to Gemfile occur between runs (e.g. if you mounted the
# host directory in the container), it will install changes before proceeding
if [ -f Gemfile ]; then
bundle check || bundle install --jobs 4 --retry 3
bundle check || bundle install --retry 3
fi

if [ "$RAILS_ENV" == "production" ]; then
Expand Down
2 changes: 1 addition & 1 deletion 22-3.2.4/init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ fi
# if any changes to Gemfile occur between runs (e.g. if you mounted the
# host directory in the container), it will install changes before proceeding
if [ -f Gemfile ]; then
bundle check || bundle install --jobs 4 --retry 3
bundle check || bundle install --retry 3
fi

if [ "$RAILS_ENV" == "production" ]; then
Expand Down
2 changes: 1 addition & 1 deletion 24-3.2.2/init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ fi
# if any changes to Gemfile occur between runs (e.g. if you mounted the
# host directory in the container), it will install changes before proceeding
if [ -f Gemfile ]; then
bundle check || bundle install --jobs 4 --retry 3
bundle check || bundle install --retry 3
fi

if [ "$RAILS_ENV" == "production" ]; then
Expand Down
2 changes: 1 addition & 1 deletion 24-3.2.4/init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ fi
# if any changes to Gemfile occur between runs (e.g. if you mounted the
# host directory in the container), it will install changes before proceeding
if [ -f Gemfile ]; then
bundle check || bundle install --jobs 4 --retry 3
bundle check || bundle install --retry 3
fi

if [ "$RAILS_ENV" == "production" ]; then
Expand Down
2 changes: 1 addition & 1 deletion 24-3.3.4/init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ fi
# if any changes to Gemfile occur between runs (e.g. if you mounted the
# host directory in the container), it will install changes before proceeding
if [ -f Gemfile ]; then
bundle check || bundle install --jobs 4 --retry 3
bundle check || bundle install --retry 3
fi

if [ "$RAILS_ENV" == "production" ]; then
Expand Down
2 changes: 1 addition & 1 deletion init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ fi
# if any changes to Gemfile occur between runs (e.g. if you mounted the
# host directory in the container), it will install changes before proceeding
if [ -f Gemfile ]; then
bundle check || bundle install --jobs 4 --retry 3
bundle check || bundle install --retry 3
fi

if [ "$RAILS_ENV" == "production" ]; then
Expand Down

0 comments on commit 2ce76c6

Please sign in to comment.