Run Windows, Linux, and Mac CI tests with nightly and stable channels
This commit is contained in:
parent
ea042b90c9
commit
67fd9ec300
3 changed files with 12 additions and 3 deletions
5
.github/workflows/linux.yml
vendored
5
.github/workflows/linux.yml
vendored
|
@ -8,7 +8,9 @@ on:
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
name: (${{ matrix.target }}, nightly)
|
name: (${{ matrix.target }}, ${{ matrix.cfg_release_channel }})
|
||||||
|
env:
|
||||||
|
CFG_RELEASE_CHANNEL: ${{ matrix.cfg_release_channel }}
|
||||||
strategy:
|
strategy:
|
||||||
# https://help.github.com/en/actions/getting-started-with-github-actions/about-github-actions#usage-limits
|
# https://help.github.com/en/actions/getting-started-with-github-actions/about-github-actions#usage-limits
|
||||||
# There's a limit of 60 concurrent jobs across all repos in the rust-lang organization.
|
# There's a limit of 60 concurrent jobs across all repos in the rust-lang organization.
|
||||||
|
@ -20,6 +22,7 @@ jobs:
|
||||||
target: [
|
target: [
|
||||||
x86_64-unknown-linux-gnu,
|
x86_64-unknown-linux-gnu,
|
||||||
]
|
]
|
||||||
|
cfg_release_channel: [nightly, stable]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: checkout
|
- name: checkout
|
||||||
|
|
5
.github/workflows/mac.yml
vendored
5
.github/workflows/mac.yml
vendored
|
@ -10,13 +10,16 @@ jobs:
|
||||||
# https://help.github.com/en/actions/automating-your-workflow-with-github-actions/virtual-environments-for-github-hosted-runners#supported-runners-and-hardware-resources
|
# https://help.github.com/en/actions/automating-your-workflow-with-github-actions/virtual-environments-for-github-hosted-runners#supported-runners-and-hardware-resources
|
||||||
# macOS Catalina 10.15
|
# macOS Catalina 10.15
|
||||||
runs-on: macos-latest
|
runs-on: macos-latest
|
||||||
name: (${{ matrix.target }}, nightly)
|
name: (${{ matrix.target }}, ${{ matrix.cfg_release_channel }})
|
||||||
|
env:
|
||||||
|
CFG_RELEASE_CHANNEL: ${{ matrix.cfg_release_channel }}
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
target: [
|
target: [
|
||||||
x86_64-apple-darwin,
|
x86_64-apple-darwin,
|
||||||
]
|
]
|
||||||
|
cfg_release_channel: [nightly, stable]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: checkout
|
- name: checkout
|
||||||
|
|
5
.github/workflows/windows.yml
vendored
5
.github/workflows/windows.yml
vendored
|
@ -8,7 +8,9 @@ on:
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
runs-on: windows-latest
|
runs-on: windows-latest
|
||||||
name: (${{ matrix.target }}, nightly)
|
name: (${{ matrix.target }}, ${{ matrix.cfg_release_channel }})
|
||||||
|
env:
|
||||||
|
CFG_RELEASE_CHANNEL: ${{ matrix.cfg_release_channel }}
|
||||||
strategy:
|
strategy:
|
||||||
# https://help.github.com/en/actions/getting-started-with-github-actions/about-github-actions#usage-limits
|
# https://help.github.com/en/actions/getting-started-with-github-actions/about-github-actions#usage-limits
|
||||||
# There's a limit of 60 concurrent jobs across all repos in the rust-lang organization.
|
# There's a limit of 60 concurrent jobs across all repos in the rust-lang organization.
|
||||||
|
@ -23,6 +25,7 @@ jobs:
|
||||||
x86_64-pc-windows-gnu,
|
x86_64-pc-windows-gnu,
|
||||||
x86_64-pc-windows-msvc,
|
x86_64-pc-windows-msvc,
|
||||||
]
|
]
|
||||||
|
cfg_release_channel: [nightly, stable]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
# The Windows runners have autocrlf enabled by default
|
# The Windows runners have autocrlf enabled by default
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue