summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2019-06-10 16:56:03 -0700
committerTim Smith <tsmith@chef.io>2019-06-10 16:56:03 -0700
commit359aa06035a58c1b64ed54e173c64b13dbac14e3 (patch)
treee65551a9560416ac2fbfc25e71bc358280643bf0
parent828bafc9fec4c03d73f51f72e773cef7e176de30 (diff)
downloadmixlib-cli-359aa06035a58c1b64ed54e173c64b13dbac14e3.tar.gz
Speed up Buildkite tests
Use the smaller containers, skip gems we don't need and use chefstyle from rubygems. Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r--.expeditor/verify.pipeline.yml12
-rw-r--r--.github/CODEOWNERS2
-rw-r--r--Gemfile4
3 files changed, 9 insertions, 9 deletions
diff --git a/.expeditor/verify.pipeline.yml b/.expeditor/verify.pipeline.yml
index a3efc1c..1a3dd9e 100644
--- a/.expeditor/verify.pipeline.yml
+++ b/.expeditor/verify.pipeline.yml
@@ -2,27 +2,27 @@ steps:
- label: run-lint-and-specs-ruby-2.4
command:
- - asdf local ruby 2.4.5
- - bundle install --jobs=7 --retry=3
+ - bundle install --jobs=7 --retry=3 --without docs debug
- bundle exec rake
expeditor:
executor:
docker:
+ image: ruby:2.4-stretch
- label: run-lint-and-specs-ruby-2.5
command:
- - asdf local ruby 2.5.5
- - bundle install --jobs=7 --retry=3
+ - bundle install --jobs=7 --retry=3 --without docs debug
- bundle exec rake
expeditor:
executor:
docker:
+ image: ruby:2.5-stretch
- label: run-lint-and-specs-ruby-2.6
command:
- - asdf local ruby 2.6.3
- - bundle install --jobs=7 --retry=3
+ - bundle install --jobs=7 --retry=3 --without docs debug
- bundle exec rake
expeditor:
executor:
docker:
+ image: ruby:2.6-stretch
diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS
index a1c440b..0324bb4 100644
--- a/.github/CODEOWNERS
+++ b/.github/CODEOWNERS
@@ -1,5 +1,5 @@
# Order is important. The last matching pattern has the most precedence.
-* @chef/chef-infra-reviewers
+* @chef/chef-foundation-reviewers
.expeditor/** @chef/jex-team
*.md @chef/docs-team \ No newline at end of file
diff --git a/Gemfile b/Gemfile
index 61a122d..ffee86f 100644
--- a/Gemfile
+++ b/Gemfile
@@ -9,12 +9,12 @@ group :docs do
end
group :test do
- gem "chefstyle", git: "https://github.com/chef/chefstyle.git", branch: "master"
+ gem "chefstyle"
gem "rspec", "~> 3.0"
gem "rake"
end
-group :development do
+group :debug do
gem "pry"
gem "pry-byebug"
gem "pry-stack_explorer"