-
Notifications
You must be signed in to change notification settings - Fork 90
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 #486 from inspec/mj/bk-coverage
Remove coverage from general test runs and add its own pipeline
- Loading branch information
Showing
4 changed files
with
48 additions
and
2 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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#!/bin/bash | ||
|
||
set -ueo pipefail | ||
|
||
echo "--- system details" | ||
uname -a | ||
ruby -v | ||
bundle --version | ||
|
||
echo "--- bundle install" | ||
bundle install --jobs=7 --retry=3 --without tools integration | ||
|
||
echo "+++ bundle exec rake" | ||
export CI_NAME=Buildkite | ||
export CI_BUILD_NUMBER=$BUILDKITE_BUILD_NUMBER | ||
export CI_BUILD_URL=$BUILDKITE_BUILD_URL | ||
export CI_BRANCH=$BUILDKITE_BRANCH | ||
|
||
bundle exec rake | ||
|
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,11 @@ | ||
--- | ||
steps: | ||
|
||
- label: coverage | ||
commands: | ||
- bundle install --jobs=7 --retry=3 --without tools integration | ||
- bundle exec rake test:default | ||
expeditor: | ||
executor: | ||
docker: | ||
image: ruby:2.6-stretch |
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