File tree Expand file tree Collapse file tree 3 files changed +12
-3
lines changed Expand file tree Collapse file tree 3 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 8
8
jobs :
9
9
test :
10
10
runs-on : ubuntu-latest
11
- name : (${{ matrix.target }}, nightly)
11
+ name : (${{ matrix.target }}, ${{ matrix.cfg_release_channel }})
12
+ env :
13
+ CFG_RELEASE_CHANNEL : ${{ matrix.cfg_release_channel }}
12
14
strategy :
13
15
# https://help.github.com/en/actions/getting-started-with-github-actions/about-github-actions#usage-limits
14
16
# There's a limit of 60 concurrent jobs across all repos in the rust-lang organization.
20
22
target : [
21
23
x86_64-unknown-linux-gnu,
22
24
]
25
+ cfg_release_channel : [nightly, stable]
23
26
24
27
steps :
25
28
- name : checkout
Original file line number Diff line number Diff line change @@ -10,13 +10,16 @@ jobs:
10
10
# https://help.github.com/en/actions/automating-your-workflow-with-github-actions/virtual-environments-for-github-hosted-runners#supported-runners-and-hardware-resources
11
11
# macOS Catalina 10.15
12
12
runs-on : macos-latest
13
- name : (${{ matrix.target }}, nightly)
13
+ name : (${{ matrix.target }}, ${{ matrix.cfg_release_channel }})
14
+ env :
15
+ CFG_RELEASE_CHANNEL : ${{ matrix.cfg_release_channel }}
14
16
strategy :
15
17
fail-fast : false
16
18
matrix :
17
19
target : [
18
20
x86_64-apple-darwin,
19
21
]
22
+ cfg_release_channel : [nightly, stable]
20
23
21
24
steps :
22
25
- name : checkout
Original file line number Diff line number Diff line change 8
8
jobs :
9
9
test :
10
10
runs-on : windows-latest
11
- name : (${{ matrix.target }}, nightly)
11
+ name : (${{ matrix.target }}, ${{ matrix.cfg_release_channel }})
12
+ env :
13
+ CFG_RELEASE_CHANNEL : ${{ matrix.cfg_release_channel }}
12
14
strategy :
13
15
# https://help.github.com/en/actions/getting-started-with-github-actions/about-github-actions#usage-limits
14
16
# There's a limit of 60 concurrent jobs across all repos in the rust-lang organization.
23
25
x86_64-pc-windows-gnu,
24
26
x86_64-pc-windows-msvc,
25
27
]
28
+ cfg_release_channel : [nightly, stable]
26
29
27
30
steps :
28
31
# The Windows runners have autocrlf enabled by default
You can’t perform that action at this time.
0 commit comments