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

ruby-changes:60038

From: Takashi <ko1@a...>
Date: Thu, 13 Feb 2020 15:23:09 +0900 (JST)
Subject: [ruby-changes:60038] 4d9f106eae (ruby_2_7): Make all Actions job names consistent

https://git.ruby-lang.org/ruby.git/commit/?id=4d9f106eae

From 4d9f106eaefeee4b160d3c5580039c64ff9c01ae Mon Sep 17 00:00:00 2001
From: Takashi Kokubun <takashikkbn@g...>
Date: Mon, 30 Dec 2019 23:30:34 -0800
Subject: Make all Actions job names consistent

like "{platform} / make ({make target}, ...)"

diff --git a/.github/workflows/mingw.yml b/.github/workflows/mingw.yml
index 9a1d50a..9c7fee8 100644
--- a/.github/workflows/mingw.yml
+++ b/.github/workflows/mingw.yml
@@ -1,4 +1,4 @@ https://github.com/ruby/ruby/blob/trunk/.github/workflows/mingw.yml#L1
-name: Windows
+name: MinGW
 on:
   push:
     branches:
@@ -14,7 +14,7 @@ on: https://github.com/ruby/ruby/blob/trunk/.github/workflows/mingw.yml#L14
 # Console encoding causes issues, see test-all & test-spec steps
 #
 jobs:
-  mingw:
+  make:
     runs-on: windows-2019
     env:
       MSYSTEM: MINGW64
@@ -27,6 +27,8 @@ jobs: https://github.com/ruby/ruby/blob/trunk/.github/workflows/mingw.yml#L27
       LDFLAGS:  "-pipe -fstack-protector-strong"
       UPDATE_UNICODE: "UNICODE_FILES=. UNICODE_PROPERTY_FILES=. UNICODE_AUXILIARY_FILES=. UNICODE_EMOJI_FILES=."
     strategy:
+      matrix:
+        test_task: [ "check" ] # not used, but to make job names consistent
       fail-fast: false
     if: "!contains(github.event.head_commit.message, '[ci skip]')"
     steps:
diff --git a/.github/workflows/mjit.yml b/.github/workflows/mjit.yml
index d23c136..d6ebcaf 100644
--- a/.github/workflows/mjit.yml
+++ b/.github/workflows/mjit.yml
@@ -7,9 +7,10 @@ on: https://github.com/ruby/ruby/blob/trunk/.github/workflows/mjit.yml#L7
     branches:
       - '*'
 jobs:
-  test:
+  make:
     strategy:
       matrix:
+        test_task: [ "check" ] # not used, but to make job names consistent
         jit_opts: [ "--jit", "--jit-wait" ]
       fail-fast: false
     runs-on: ubuntu-latest
-- 
cgit v0.10.2


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

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