From f579dac34f3cfe08af6b74b8975d4099513874c6 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Thu, 7 Nov 2019 15:51:09 -0600 Subject: [PATCH] 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. --- .github/workflows/main.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3900c29149..3635277501 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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