summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2019-06-10 17:02:06 -0700
committerGitHub <noreply@github.com>2019-06-10 17:02:06 -0700
commit6297efe16ecb1bf79964b7a7a65145f68138e8d2 (patch)
treedde4fa837d218771f2854f46650a23361751bb1c
parent4672ad91cf7540c2d366ca5bdfab5acf6036fd4d (diff)
parent359aa06035a58c1b64ed54e173c64b13dbac14e3 (diff)
downloadmixlib-cli-6297efe16ecb1bf79964b7a7a65145f68138e8d2.tar.gz
Merge pull request #67 from chef/bk
Speed up Buildkite tests
-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"