forked from test-kitchen/test-kitchen
-
Notifications
You must be signed in to change notification settings - Fork 0
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: Ashique Saidalavi <[email protected]>
- Loading branch information
Showing
3 changed files
with
63 additions
and
40 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,16 @@ | ||
#!/bin/bash | ||
# | ||
# This script runs a passed in command, but first setups up the bundler caching on the repo | ||
|
||
set -ue | ||
|
||
export USER="root" | ||
export LANG=C.UTF-8 LANGUAGE=C.UTF-8 | ||
|
||
echo "--- bundle install" | ||
|
||
bundle config --local path vendor/bundle | ||
bundle install --jobs=7 --retry=3 | ||
|
||
echo "+++ bundle exec task" | ||
bundle exec $@ |
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,47 @@ | ||
--- | ||
expeditor: | ||
cached_folders: | ||
- vendor | ||
defaults: | ||
buildkite: | ||
retry: | ||
automatic: | ||
limit: 1 | ||
timeout_in_minutes: 30 | ||
|
||
steps: | ||
- label: run-specs-ruby-3.1 | ||
command: | ||
- .expeditor/run_linux_tests.sh rake test | ||
expeditor: | ||
executor: | ||
docker: | ||
image: ruby:3.1 | ||
|
||
#- label: run-specs-windows-ruby-3.1 | ||
# command: | ||
# - powershell .expeditor/run_windows_tests.ps1 rspec | ||
# expeditor: | ||
# executor: | ||
# docker: | ||
# host_os: windows | ||
# shell: ["powershell", "-Command"] | ||
# image: rubydistros/windows-2019:3.1 | ||
|
||
- label: run-specs-ruby-3.3 | ||
command: | ||
- .expeditor/run_linux_tests.sh rspec | ||
expeditor: | ||
executor: | ||
docker: | ||
image: ruby:3.3 | ||
|
||
#- label: run-specs-windows-ruby-3.3 | ||
# command: | ||
# - powershell .expeditor/run_windows_tests.ps1 rspec | ||
# expeditor: | ||
# executor: | ||
# docker: | ||
# host_os: windows | ||
# shell: ["powershell", "-Command"] | ||
# image: rubydistros/windows-2019:3.3 |
This file was deleted.
Oops, something went wrong.