mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Improve Actions job name shown on toolip
Hoping to make it like `make (check, ...)`, `make (test-bundler, ...)` instead of `latest (...)` because some of the jobs are already not running on a latest platform.
This commit is contained in:
parent
3118c7a2d2
commit
02b6451c17
3 changed files with 9 additions and 9 deletions
2
.github/workflows/macos.yml
vendored
2
.github/workflows/macos.yml
vendored
|
@ -7,7 +7,7 @@ on:
|
||||||
branches:
|
branches:
|
||||||
- '*'
|
- '*'
|
||||||
jobs:
|
jobs:
|
||||||
latest:
|
make:
|
||||||
runs-on: macos-latest
|
runs-on: macos-latest
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
|
|
12
.github/workflows/ubuntu.yml
vendored
12
.github/workflows/ubuntu.yml
vendored
|
@ -7,16 +7,16 @@ on:
|
||||||
branches:
|
branches:
|
||||||
- '*'
|
- '*'
|
||||||
jobs:
|
jobs:
|
||||||
latest:
|
make:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-latest, ubuntu-16.04]
|
|
||||||
test_task: [ "check", "test-bundler", "test-bundled-gems" ]
|
test_task: [ "check", "test-bundler", "test-bundled-gems" ]
|
||||||
|
os: [ubuntu-latest, ubuntu-16.04]
|
||||||
exclude:
|
exclude:
|
||||||
- os: ubuntu-16.04
|
- test_task: test-bundler
|
||||||
test_task: test-bundler
|
os: ubuntu-16.04
|
||||||
- os: ubuntu-16.04
|
- test_task: test-bundled-gems
|
||||||
test_task: test-bundled-gems
|
os: ubuntu-16.04
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
if: "!contains(github.event.head_commit.message, '[ci skip]')"
|
if: "!contains(github.event.head_commit.message, '[ci skip]')"
|
||||||
|
|
4
.github/workflows/windows.yml
vendored
4
.github/workflows/windows.yml
vendored
|
@ -7,12 +7,12 @@ on:
|
||||||
branches:
|
branches:
|
||||||
- '*'
|
- '*'
|
||||||
jobs:
|
jobs:
|
||||||
latest:
|
make:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
|
test_task: [test]
|
||||||
os: [windows-2016, windows-2019]
|
os: [windows-2016, windows-2019]
|
||||||
vs: [2017, 2019]
|
vs: [2017, 2019]
|
||||||
test_task: [test]
|
|
||||||
exclude:
|
exclude:
|
||||||
- os: windows-2016
|
- os: windows-2016
|
||||||
vs: 2019
|
vs: 2019
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue