diff options
author | Tim Smith <tsmith84@gmail.com> | 2019-07-19 11:19:13 -0700 |
---|---|---|
committer | Tim Smith <tsmith84@gmail.com> | 2019-07-19 11:19:13 -0700 |
commit | 70b7b54cabef12e1cc4ac771c0952ad0c5c45eb8 (patch) | |
tree | 1feb3b8d06e69d49dda2ae7e441ce5ff824e6ca1 | |
parent | 5617cd711485a9a3612f334dfc5d100ddb82d610 (diff) | |
download | ohai-70b7b54cabef12e1cc4ac771c0952ad0c5c45eb8.tar.gz |
Speed up running the PR testsv15.2.1
Skip some gems we don' need
Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r-- | .expeditor/config.yml | 1 | ||||
-rw-r--r-- | .expeditor/verify.pipeline.yml | 12 |
2 files changed, 7 insertions, 6 deletions
diff --git a/.expeditor/config.yml b/.expeditor/config.yml index b85946ce..286bfcc8 100644 --- a/.expeditor/config.yml +++ b/.expeditor/config.yml @@ -1,5 +1,6 @@ # Documentation available at https://expeditor.chef.io/docs/getting-started/ --- + # Slack channel in Chef Software slack to send notifications about build failures, etc slack: notify_channel: chef-infra-notify diff --git a/.expeditor/verify.pipeline.yml b/.expeditor/verify.pipeline.yml index ea37393a..35f2feb8 100644 --- a/.expeditor/verify.pipeline.yml +++ b/.expeditor/verify.pipeline.yml @@ -2,7 +2,7 @@ steps: - label: lint-chefstyle command: - - bundle install --jobs=7 --retry=3 + - bundle install --jobs=7 --retry=3 --without docs debug - bundle exec rake style expeditor: executor: @@ -10,7 +10,7 @@ steps: - label: run-ohai command: - - bundle install --jobs=7 --retry=3 + - bundle install --jobs=7 --retry=3 --without docs debug - bundle exec ohai expeditor: executor: @@ -19,7 +19,7 @@ steps: - label: run-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 spec expeditor: executor: @@ -28,15 +28,15 @@ steps: - label: run-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 spec expeditor: executor: docker: -- label: "run-specs-windows" +- label: run-specs-windows command: - - bundle install --jobs=7 --retry=3 + - bundle install --jobs=7 --retry=3 --without docs debug - bundle exec rake spec expeditor: executor: |