-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17695 from opf/merge-release/15.2-20250123033524
Merge release/15.2 into dev
- Loading branch information
Showing
8 changed files
with
211 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
|
||
# temporary 'seed' for working ppc64 cached vendor/bundle | ||
if [ ! -d vendor/bundle ] && [ -n "$(uname -a | grep ppc64)" ]; then | ||
wget https://openproject-public.s3.eu-central-1.amazonaws.com/ruby/bundle/openproject-release-15.2-836aec00b1-vendor-bundle.tar.gz | ||
tar -xf openproject-release-15.2-836aec00b1-vendor-bundle.tar.gz | ||
fi | ||
|
||
bundle config set --local path 'vendor/bundle' | ||
bundle config set --local without 'test development' | ||
bundle install --jobs=8 --retry=3 | ||
bundle config set deployment 'true' | ||
cp Gemfile.lock Gemfile.lock.bak | ||
rm -rf vendor/bundle/ruby/*/cache | ||
rm -rf vendor/bundle/ruby/*/gems/*/spec | ||
rm -rf vendor/bundle/ruby/*/gems/*/test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.