summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2019-12-30 23:30:34 -0800
committerNARUSE, Yui <naruse@airemix.jp>2020-01-30 13:34:24 +0900
commit4d9f106eaefeee4b160d3c5580039c64ff9c01ae (patch)
tree096befcb25a8e3ab3414cc1fdf31efbb4f015fb9 /.github
parentca48fa8e81ca19f4d0c24017662245c933be86eb (diff)
Make all Actions job names consistent
like "{platform} / make ({make target}, ...)"
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/mingw.yml6
-rw-r--r--.github/workflows/mjit.yml3
2 files changed, 6 insertions, 3 deletions
diff --git a/.github/workflows/mingw.yml b/.github/workflows/mingw.yml
index 9a1d50a616..9c7fee8f7e 100644
--- a/.github/workflows/mingw.yml
+++ b/.github/workflows/mingw.yml
@@ -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:
diff --git a/.github/workflows/mjit.yml b/.github/workflows/mjit.yml
index d23c136619..d6ebcaf75f 100644
--- a/.github/workflows/mjit.yml
+++ b/.github/workflows/mjit.yml
@@ -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