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 88jobs :
99 test :
1010 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 }}
1214 strategy :
1315 # https://help.github.com/en/actions/getting-started-with-github-actions/about-github-actions#usage-limits
1416 # There's a limit of 60 concurrent jobs across all repos in the rust-lang organization.
2022 target : [
2123 x86_64-unknown-linux-gnu,
2224 ]
25+ cfg_release_channel : [nightly, stable]
2326
2427 steps :
2528 - name : checkout
Original file line number Diff line number Diff line change @@ -10,13 +10,16 @@ jobs:
1010 # https://help.github.com/en/actions/automating-your-workflow-with-github-actions/virtual-environments-for-github-hosted-runners#supported-runners-and-hardware-resources
1111 # macOS Catalina 10.15
1212 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 }}
1416 strategy :
1517 fail-fast : false
1618 matrix :
1719 target : [
1820 x86_64-apple-darwin,
1921 ]
22+ cfg_release_channel : [nightly, stable]
2023
2124 steps :
2225 - name : checkout
Original file line number Diff line number Diff line change 88jobs :
99 test :
1010 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 }}
1214 strategy :
1315 # https://help.github.com/en/actions/getting-started-with-github-actions/about-github-actions#usage-limits
1416 # There's a limit of 60 concurrent jobs across all repos in the rust-lang organization.
2325 x86_64-pc-windows-gnu,
2426 x86_64-pc-windows-msvc,
2527 ]
28+ cfg_release_channel : [nightly, stable]
2629
2730 steps :
2831 # The Windows runners have autocrlf enabled by default
You can’t perform that action at this time.
0 commit comments