From ee2d4906fdf8685bb618d6cc4e04c4ffdf5d7c36 Mon Sep 17 00:00:00 2001 From: est31 Date: Thu, 2 Dec 2021 23:25:02 +0100 Subject: [PATCH] Disable Mac OS for now for the CI See https://github.com/rust-windowing/winit/pull/2078 --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 07f208a4c0..258384defd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,8 +6,9 @@ jobs: build: strategy: + fail-fast: false matrix: - os: [macOS-latest, windows-latest, ubuntu-latest] + os: [windows-latest, ubuntu-latest] toolchain: [stable, beta, nightly] runs-on: ${{ matrix.os }}