mirror of
https://github.com/inspec/inspec
synced 2024-11-10 15:14:23 +00:00
d6843db397
+ This adds RESET_BUNDLE_CACHE so we can forcibly reset. + Now computes the sha against the Gemfile.lock. + Other minor fixes as pointed out by shellcheck. Signed-off-by: Ryan Davis <zenspider@chef.io>
64 lines
1.5 KiB
Bash
Executable file
64 lines
1.5 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
set -ue
|
|
|
|
echo "--- dependencies"
|
|
export LANG=C.UTF-8 LANGUAGE=C.UTF-8
|
|
S3_URL="s3://public-cd-buildkite-cache/${BUILDKITE_PIPELINE_SLUG}/${BUILDKITE_LABEL}"
|
|
|
|
pull_s3_file() {
|
|
aws s3 cp "${S3_URL}/$1" "$1" || echo "Could not pull $1 from S3"
|
|
}
|
|
|
|
push_s3_file() {
|
|
if [ -f "$1" ]; then
|
|
aws s3 cp "$1" "${S3_URL}/$1" || echo "Could not push $1 to S3 for caching."
|
|
fi
|
|
}
|
|
|
|
apt-get update -y
|
|
apt-get install sudo awscli -y
|
|
|
|
echo "--- setting up user"
|
|
useradd -m -U --uid 2000 normal
|
|
echo "normal ALL=(ALL) NOPASSWD: ALL" >> /etc/sudoers.d/normal
|
|
|
|
echo "--- updating rubygems"
|
|
gem update --system -N
|
|
|
|
echo "--- system details"
|
|
uname -a
|
|
gem env
|
|
bundle --version
|
|
|
|
echo "--- bundle install"
|
|
pull_s3_file "bundle.tar.gz"
|
|
pull_s3_file "bundle.sha256"
|
|
|
|
if [ -f bundle.tar.gz ]; then
|
|
tar -xzf bundle.tar.gz
|
|
fi
|
|
|
|
if [ -n "${RESET_BUNDLE_CACHE:-}" ]; then
|
|
rm bundle.sha256
|
|
fi
|
|
|
|
bundle config --local path vendor/bundle
|
|
bundle install --jobs=7 --retry=3 --without tools maintenance deploy
|
|
|
|
echo "--- bundle cache"
|
|
if test -f bundle.sha256 && shasum --check bundle.sha256 --status; then
|
|
echo "Bundled gems have not changed. Skipping upload to s3"
|
|
else
|
|
echo "Bundled gems have changed. Uploading to s3"
|
|
shasum -a 256 Gemfile.lock > bundle.sha256
|
|
tar -czf bundle.tar.gz vendor/
|
|
push_s3_file bundle.tar.gz
|
|
push_s3_file bundle.sha256
|
|
fi
|
|
|
|
echo "+++ bundle exec rake"
|
|
# TODO: run this as non-root:
|
|
# chown -R normal:normal /home/normal /workdir
|
|
# su normal -c "bundle exec rake ${RAKE_TASK:-}"
|
|
bundle exec rake ${RAKE_TASK:-}
|