diff options
author | Tim Smith <tsmith84@gmail.com> | 2021-03-15 11:20:45 -0700 |
---|---|---|
committer | Tim Smith <tsmith84@gmail.com> | 2021-03-15 11:20:45 -0700 |
commit | dd15133b84e176d3775168a892c6f5388b73025a (patch) | |
tree | 85bbc9a8060eba1a8187ce13c0f2a257d785a756 /.expeditor/verify.pipeline.yml | |
parent | 2269feb2b74a792352cf9568cd58866e4fbb8ad5 (diff) | |
download | mixlib-authentication-dd15133b84e176d3775168a892c6f5388b73025a.tar.gz |
Test on Ruby 3 and update gem cachingruby_3
Cache all our gem installs using Buildkite
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to '.expeditor/verify.pipeline.yml')
-rw-r--r-- | .expeditor/verify.pipeline.yml | 22 |
1 files changed, 17 insertions, 5 deletions
diff --git a/.expeditor/verify.pipeline.yml b/.expeditor/verify.pipeline.yml index 855a197..165dccc 100644 --- a/.expeditor/verify.pipeline.yml +++ b/.expeditor/verify.pipeline.yml @@ -1,12 +1,14 @@ --- expeditor: + cached_folders: + - vendor defaults: buildkite: timeout_in_minutes: 30 steps: -- label: run-lint-and-specs-ruby-2.4 +- label: run-lint-and-specs-:ruby:-2.4 command: - .expeditor/run_linux_tests.sh rake expeditor: @@ -14,7 +16,7 @@ steps: docker: image: ruby:2.4-buster -- label: run-lint-and-specs-ruby-2.5 +- label: run-lint-and-specs-:ruby:-2.5 command: - .expeditor/run_linux_tests.sh rake expeditor: @@ -22,14 +24,15 @@ steps: docker: image: ruby:2.5-buster -- label: run-lint-and-specs-ruby-2.6 +- label: run-lint-and-specs-:ruby:-2.6 command: - .expeditor/run_linux_tests.sh rake expeditor: executor: docker: image: ruby:2.6-buster -- label: run-lint-and-specs-ruby-2.7 + +- label: run-lint-and-specs-:ruby:-2.7 command: - .expeditor/run_linux_tests.sh rake expeditor: @@ -37,9 +40,18 @@ steps: docker: image: ruby:2.7-buster +- label: run-lint-and-specs-:ruby:-3.0 + command: + - .expeditor/run_linux_tests.sh rake + expeditor: + executor: + docker: + image: ruby:3.0-buster + - label: run-specs-windows command: - - bundle install --jobs=7 --retry=3 --without docs debug + - bundle config --local path vendor/bundle + - bundle install --jobs=7 --retry=3 - bundle exec rake expeditor: executor: |