mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
The include
d set should be expanded values [ci skip]
While the `matrix` level values are expanded from the production of each arrays, `include`d set should be consist from expanded single values.
This commit is contained in:
parent
bf97415c02
commit
bab8623343
1 changed files with 3 additions and 3 deletions
6
.github/workflows/mingw.yml
vendored
6
.github/workflows/mingw.yml
vendored
|
@ -37,10 +37,10 @@ jobs:
|
||||||
include:
|
include:
|
||||||
- msystem: "MINGW64"
|
- msystem: "MINGW64"
|
||||||
base_ruby: 2.6
|
base_ruby: 2.6
|
||||||
test_task: [ "check" ] # to make job names consistent
|
test_task: "check" # to make job names consistent
|
||||||
- msystem: "UCRT64"
|
- msystem: "UCRT64"
|
||||||
base_ruby: head
|
base_ruby: head
|
||||||
test_task: [ "check" ] # to make job names consistent
|
test_task: "check" # to make job names consistent
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
if: ${{ !startsWith(github.event.head_commit.message, '[DOC]') && !contains(github.event.pull_request.labels.*.name, 'Documentation') }}
|
if: ${{ !startsWith(github.event.head_commit.message, '[DOC]') && !contains(github.event.pull_request.labels.*.name, 'Documentation') }}
|
||||||
steps:
|
steps:
|
||||||
|
@ -133,7 +133,7 @@ jobs:
|
||||||
payload: |
|
payload: |
|
||||||
{
|
{
|
||||||
"ci": "GitHub Actions",
|
"ci": "GitHub Actions",
|
||||||
"env": "${{ github.workflow }} ${{ matrix.msystem }} / ${{ join(matrix.test_task) }}",
|
"env": "${{ github.workflow }} ${{ matrix.msystem }} / ${{ matrix.test_task }}",
|
||||||
"url": "https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}",
|
"url": "https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}",
|
||||||
"commit": "${{ github.sha }}",
|
"commit": "${{ github.sha }}",
|
||||||
"branch": "${{ github.ref }}".split('/').reverse()[0]
|
"branch": "${{ github.ref }}".split('/').reverse()[0]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue