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:
parent
fe158e4c65
commit
f98650e9f8
2 changed files with 6 additions and 3 deletions
6
.github/workflows/mingw.yml
vendored
6
.github/workflows/mingw.yml
vendored
|
@ -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:
|
||||
|
|
3
.github/workflows/mjit.yml
vendored
3
.github/workflows/mjit.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue