1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Make all Actions job names consistent

like "{platform} / make ({make target}, ...)"
This commit is contained in:
Takashi Kokubun 2019-12-30 23:30:34 -08:00
parent fe158e4c65
commit f98650e9f8
No known key found for this signature in database
GPG key ID: 6FFC433B12EE23DD
2 changed files with 6 additions and 3 deletions

View file

@ -1,4 +1,4 @@
name: Windows
name: MinGW
on:
push:
branches:
@ -14,7 +14,7 @@ on:
# 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:
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:

View file

@ -7,9 +7,10 @@ on:
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