From b7204daad805f9133973ba47aeaa74d7c31b6524 Mon Sep 17 00:00:00 2001 From: jayashri garud Date: Thu, 24 Feb 2022 12:25:14 +0530 Subject: add ruby 3.0 and 3.1 tests in verify pipeline Signed-off-by: jayashri garud --- .expeditor/verify.pipeline.yml | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) (limited to '.expeditor/verify.pipeline.yml') diff --git a/.expeditor/verify.pipeline.yml b/.expeditor/verify.pipeline.yml index 4948358..934e60b 100644 --- a/.expeditor/verify.pipeline.yml +++ b/.expeditor/verify.pipeline.yml @@ -13,7 +13,7 @@ steps: expeditor: executor: docker: - image: ruby:2.6-buster + image: ruby:2.6 - label: run-lint-and-specs-ruby-2.7 command: @@ -22,7 +22,25 @@ steps: expeditor: executor: docker: - image: ruby:2.7-buster + image: ruby:2.7 + +- label: run-lint-and-specs-ruby-3.0 + command: + - apt-get update + - .expeditor/run_linux_tests.sh rake spec pedant style + expeditor: + executor: + docker: + image: ruby:3.0 + +- label: run-lint-and-specs-ruby-3.1 + command: + - apt-get update + - .expeditor/run_linux_tests.sh rake spec pedant style + expeditor: + executor: + docker: + image: ruby:3.1 - label: run-specs-windows command: -- cgit v1.2.1 From c4d45f8bd07a287258d60e1f03487bb5fa751c11 Mon Sep 17 00:00:00 2001 From: jayashri garud Date: Thu, 24 Feb 2022 12:28:11 +0530 Subject: pin activesupport to 6.1 until we support ruby 2.6 Signed-off-by: jayashri garud --- .expeditor/verify.pipeline.yml | 4 ---- 1 file changed, 4 deletions(-) (limited to '.expeditor/verify.pipeline.yml') diff --git a/.expeditor/verify.pipeline.yml b/.expeditor/verify.pipeline.yml index 934e60b..1b289d2 100644 --- a/.expeditor/verify.pipeline.yml +++ b/.expeditor/verify.pipeline.yml @@ -8,7 +8,6 @@ steps: - label: run-lint-and-specs-ruby-2.6 command: - - apt-get update - .expeditor/run_linux_tests.sh rake spec pedant style expeditor: executor: @@ -17,7 +16,6 @@ steps: - label: run-lint-and-specs-ruby-2.7 command: - - apt-get update - .expeditor/run_linux_tests.sh rake spec pedant style expeditor: executor: @@ -26,7 +24,6 @@ steps: - label: run-lint-and-specs-ruby-3.0 command: - - apt-get update - .expeditor/run_linux_tests.sh rake spec pedant style expeditor: executor: @@ -35,7 +32,6 @@ steps: - label: run-lint-and-specs-ruby-3.1 command: - - apt-get update - .expeditor/run_linux_tests.sh rake spec pedant style expeditor: executor: -- cgit v1.2.1 From bd5c0da74ca9c90a8fda33af83a1369505e7f998 Mon Sep 17 00:00:00 2001 From: jayashri garud Date: Mon, 28 Feb 2022 10:50:04 +0530 Subject: remove windows test Signed-off-by: jayashri garud --- .expeditor/verify.pipeline.yml | 10 ---------- 1 file changed, 10 deletions(-) (limited to '.expeditor/verify.pipeline.yml') diff --git a/.expeditor/verify.pipeline.yml b/.expeditor/verify.pipeline.yml index 1b289d2..36b10a9 100644 --- a/.expeditor/verify.pipeline.yml +++ b/.expeditor/verify.pipeline.yml @@ -37,13 +37,3 @@ steps: executor: docker: image: ruby:3.1 - -- label: run-specs-windows - command: - - bundle config set --local without docs debug - - bundle install --jobs=7 --retry=3 - - bundle exec rake pedant style - expeditor: - executor: - docker: - host_os: windows -- cgit v1.2.1