-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: kasif <[email protected]> #clean scriptt
- Loading branch information
1 parent
25018f8
commit 947cce0
Showing
1 changed file
with
1 addition
and
29 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,38 +10,10 @@ export USER="root" | |
apt-get update -y | ||
apt-get install awscli -y | ||
|
||
# grab the s3 bundler if it's there and use it for all operations in bundler | ||
echo "Fetching bundle cache archive from s3://public-cd-buildkite-cache/${BUILDKITE_PIPELINE_SLUG}/${BUILDKITE_LABEL}/bundle.tar.gz" | ||
aws s3 cp "s3://public-cd-buildkite-cache/${BUILDKITE_PIPELINE_SLUG}/${BUILDKITE_LABEL}/bundle.tar.gz" bundle.tar.gz || echo 'Could not pull the bundler archive from s3 for caching. Builds may be slower than usual as all gems will have to install.' | ||
aws s3 cp "s3://public-cd-buildkite-cache/${BUILDKITE_PIPELINE_SLUG}/${BUILDKITE_LABEL}/bundle.sha256" bundle.sha256 || echo "Could not pull the sha256 hash of the vendor/bundle directory from s3. Without this we will compress and upload the bundler archive to S3 even if it hasn't changed" | ||
|
||
echo "Restoring the bundle cache archive to vendor/bundle" | ||
if [ -f bundle.tar.gz ]; then | ||
tar -xzf bundle.tar.gz | ||
fi | ||
|
||
git config --global user.email "[email protected]" | ||
git config --global user.name "Foo Bar" | ||
|
||
bundle config --local path vendor/bundle | ||
bundle install --jobs=7 --retry=3 | ||
echo "bundle exec task" | ||
bundle exec $1 | ||
|
||
if [[ -f bundle.tar.gz && -f bundle.sha256 ]]; then # dont' check the sha if we're missing either file | ||
if shasum --check bundle.sha256 --status; then # if the the sha matches we're done | ||
echo "Bundled gems have not changed. Skipping upload to s3" | ||
exit | ||
fi | ||
fi | ||
|
||
echo "Generating sha256 hash file of the vendor/bundle directory to ship to s3" | ||
shasum -a 256 vendor/bundle > bundle.sha256 | ||
|
||
echo "Creating the tar.gz to of the vendor/bundle directory to ship to s3" | ||
tar -czf bundle.tar.gz vendor/ | ||
|
||
echo "Uploading the tar.gz of the vendor/bundle directory to s3" | ||
aws s3 cp bundle.tar.gz "s3://public-cd-buildkite-cache/${BUILDKITE_PIPELINE_SLUG}/${BUILDKITE_LABEL}/bundle.tar.gz" || echo 'Could not push the bundler directory to s3 for caching. Future builds may be slower if this continues.' | ||
|
||
echo "Uploading the sha256 hash of the vendor/bundle directory to s3" | ||
aws s3 cp bundle.sha256 "s3://public-cd-buildkite-cache/${BUILDKITE_PIPELINE_SLUG}/${BUILDKITE_LABEL}/bundle.sha256" || echo 'Could not push the bundler directory to s3 for caching. Future builds may be slower if this continues.' |