[前][次][番号順一覧][スレッド一覧]

ruby-changes:63423

From: Benoit <ko1@a...>
Date: Sat, 24 Oct 2020 22:52:19 +0900 (JST)
Subject: [ruby-changes:63423] 71f699543b (master): Tweaks for the ruby/spec workflow

https://git.ruby-lang.org/ruby.git/commit/?id=71f699543b

From 71f699543b22e74b4aca5d70c462a22cbf420938 Mon Sep 17 00:00:00 2001
From: Benoit Daloze <eregontp@g...>
Date: Sat, 24 Oct 2020 15:51:18 +0200
Subject: Tweaks for the ruby/spec workflow


diff --git a/.github/workflows/spec_guards.yml b/.github/workflows/spec_guards.yml
index 5e8eaaa..65d1a65 100644
--- a/.github/workflows/spec_guards.yml
+++ b/.github/workflows/spec_guards.yml
@@ -1,4 +1,4 @@ https://github.com/ruby/ruby/blob/trunk/.github/workflows/spec_guards.yml#L1
-name: Rubyspec Guard Checks
+name: Rubyspec Version Guards Check
 
 on: [push, pull_request]
 
@@ -9,11 +9,9 @@ jobs: https://github.com/ruby/ruby/blob/trunk/.github/workflows/spec_guards.yml#L9
     if: "!contains(github.event.head_commit.message, '[ci skip]')"
     strategy:
       matrix:
+        # Specs from ruby/spec should still run on all supported Ruby versions.
+        # This also ensures the needed ruby_version_is guards are there, see spec/README.md.
         ruby:
-#         - ruby-2.1
-#         - ruby-2.2
-#         - ruby-2.3
-#         - ruby-2.4
           - ruby-2.5
           - ruby-2.6
           - ruby-2.7
@@ -23,6 +21,7 @@ jobs: https://github.com/ruby/ruby/blob/trunk/.github/workflows/spec_guards.yml#L21
       - uses: ruby/setup-ruby@v1
         with:
           ruby-version: ${{ matrix.ruby }}
+          bundler: none
       - run: ruby ../mspec/bin/mspec
         working-directory: spec/ruby
       - uses: k0kubun/action-slack@v...
-- 
cgit v0.10.2


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]