ruby-changes:59562
From: Takashi <ko1@a...>
Date: Tue, 31 Dec 2019 16:31:29 +0900 (JST)
Subject: [ruby-changes:59562] f98650e9f8 (master): Make all Actions job names consistent
https://git.ruby-lang.org/ruby.git/commit/?id=f98650e9f8 From f98650e9f8602bfcf8fbb9fe63c2e1bc08ded81f 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/