Run beta/nightly test on ubuntu, not macos (#506)
This commit switches the beta/nightly tests to happen on Ubuntu instead of macOS. Turns out GitHub Actions has scheduling limitations on macOS that limit repositories to 5 concurrent jobs per repository, so let's reduce the load a bit by running more builds on Linux than mac.
This commit is contained in:
committed by
Dan Gohman
parent
6aabdaa038
commit
f579dac34f
12
.github/workflows/main.yml
vendored
12
.github/workflows/main.yml
vendored
@@ -65,19 +65,19 @@ jobs:
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
build: [stable, beta, nightly, windows, linux]
|
||||
build: [stable, beta, nightly, windows, macos]
|
||||
include:
|
||||
- build: stable
|
||||
os: macos-latest
|
||||
os: ubuntu-latest
|
||||
rust: stable
|
||||
- build: beta
|
||||
os: macos-latest
|
||||
os: ubuntu-latest
|
||||
rust: beta
|
||||
- build: nightly
|
||||
os: macos-latest
|
||||
rust: nightly
|
||||
- build: linux
|
||||
os: ubuntu-latest
|
||||
rust: nightly
|
||||
- build: macos
|
||||
os: macos-latest
|
||||
rust: stable
|
||||
- build: windows
|
||||
os: windows-latest
|
||||
|
||||
Reference in New Issue
Block a user