From 359aa06035a58c1b64ed54e173c64b13dbac14e3 Mon Sep 17 00:00:00 2001 From: Tim Smith Date: Mon, 10 Jun 2019 16:56:03 -0700 Subject: Speed up Buildkite tests Use the smaller containers, skip gems we don't need and use chefstyle from rubygems. Signed-off-by: Tim Smith --- .expeditor/verify.pipeline.yml | 12 ++++++------ .github/CODEOWNERS | 2 +- Gemfile | 4 ++-- 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" -- cgit v1.2.1