diff --git a/Jenkinsfile b/Jenkinsfile index 5ce959ea..aa378847 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -9,34 +9,32 @@ pipeline { stages { stage("Run tests") { parallel { - stage("Ruby 2.5") { + stage("Ruby 2.7") { agent { docker { - image 'ruby:2.5' + image 'ruby:2.7' } } steps { - sh 'gem install bundler:2.1.4' sh 'bundle install --deployment' sh 'bundle exec rake spec' } } - stage("Ruby 2.6") { + stage("Ruby 3.0") { agent { docker { - image 'ruby:2.6' + image 'ruby:3.0' } } steps { - sh 'gem install bundler:2.1.4' sh 'bundle install --deployment' sh 'bundle exec rake spec' } } - stage("Ruby 2.7") { + stage("Ruby 3.1") { agent { docker { - image 'ruby:2.7' + image 'ruby:3.1' } } steps { @@ -44,10 +42,10 @@ pipeline { sh 'bundle exec rake spec' } } - stage("Ruby 3.0") { + stage("Ruby 3.2") { agent { docker { - image 'ruby:3.0' + image 'ruby:3.2' } } steps { @@ -55,10 +53,10 @@ pipeline { sh 'bundle exec rake spec' } } - stage("Ruby 3.1") { + stage("Ruby 3.3") { agent { docker { - image 'ruby:3.1' + image 'ruby:3.3' } } steps { diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 2bab1f0c..413cfb5f 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -9,7 +9,6 @@ # Currently just above 75% coverage - don't make it worse minimum_coverage 75 - refuse_coverage_drop end LIB_DIR = File.expand_path(File.join(File.dirname(__FILE__), "..", "lib"))