-
Notifications
You must be signed in to change notification settings - Fork 39
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 #164 from chef/testing
Migrate to Buildkite
- Loading branch information
Showing
9 changed files
with
111 additions
and
15 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
#!/bin/bash | ||
# | ||
# This script runs a passed in command, but first setups up the bundler caching on the repo | ||
|
||
set -ue | ||
|
||
export USER="root" | ||
|
||
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 awscli -y | ||
|
||
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 | ||
|
||
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 task" | ||
bundle exec $1 |
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,32 @@ | ||
--- | ||
|
||
steps: | ||
|
||
- label: run-specs-ruby-2.4 | ||
command: | ||
- .expeditor/run_linux_tests.sh rake | ||
expeditor: | ||
executor: | ||
docker: | ||
image: ruby:2.4-buster | ||
- label: run-specs-ruby-2.5 | ||
command: | ||
- .expeditor/run_linux_tests.sh rake | ||
expeditor: | ||
executor: | ||
docker: | ||
image: ruby:2.5-buster | ||
- label: run-specs-ruby-2.6 | ||
command: | ||
- .expeditor/run_linux_tests.sh rake | ||
expeditor: | ||
executor: | ||
docker: | ||
image: ruby:2.6-buster | ||
- label: run-specs-ruby-2.7-rc | ||
command: | ||
- .expeditor/run_linux_tests.sh rake | ||
expeditor: | ||
executor: | ||
docker: | ||
image: ruby:2.7-rc-buster |
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 |
---|---|---|
@@ -1,7 +1,5 @@ | ||
# Order is important. The last matching pattern has the most precedence. | ||
|
||
* @chef/msys-developers | ||
.expeditor/** @chef/jex-team | ||
README.md @chef/docs-team | ||
RELEASE_NOTES.md @chef/docs-team | ||
.github/ISSUE_TEMPLATE/** @chef/docs-team | ||
* @chef/msys-developers | ||
.expeditor/ @chef/jex-team | ||
*.md @chef/docs-team |
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
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