Skip to content

Commit

Permalink
Make all Actions job names consistent
Browse files Browse the repository at this point in the history
like "{platform} / make ({make target}, ...)"
  • Loading branch information
k0kubun committed Dec 31, 2019
1 parent fe158e4 commit f98650e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/mingw.yml
@@ -1,4 +1,4 @@
name: Windows
name: MinGW
on:
push:
branches:
Expand All @@ -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
Expand All @@ -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:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/mjit.yml
Expand Up @@ -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
Expand Down

0 comments on commit f98650e

Please sign in to comment.