From 44f59e13ba3b1e7252c0575c2074fb1429fa9009 Mon Sep 17 00:00:00 2001 From: Yasuo Honda Date: Fri, 22 Nov 2024 13:43:06 +0900 Subject: [PATCH] Run the guides only for Rails 7.2.x and higher Instead of make this CI green by specifying Rails version and sqlite3 version, https://buildkite.com/rails/rails/builds/113977#019351d1-4ecd-4552-b403-92317184d9bf This commit skips guides for Rails 7.1.x and lower because Rails 7.1.x just accepts security fixes because these templates are for bug fixes. This version specified in this pull request "7.2.x" needs bumped in future. --- pipelines/rails-ci/pipeline.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipelines/rails-ci/pipeline.rb b/pipelines/rails-ci/pipeline.rb index cd74fab..cdc1743 100644 --- a/pipelines/rails-ci/pipeline.rb +++ b/pipelines/rails-ci/pipeline.rb @@ -130,7 +130,7 @@ rake "activestorage" rake "activesupport" - rake "guides" + rake "guides" if build_context.rails_version >= Gem::Version.new("7.2.x") rake "railties", service: "railties", parallelism: 12