From 31fcf3f3f6ab4031a80765cf9ee8b5c9e28e5d30 Mon Sep 17 00:00:00 2001 From: est31 Date: Thu, 2 Dec 2021 22:48:10 +0100 Subject: [PATCH 1/3] Update glutin to 0.28 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index f697088729..f23bfce206 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -33,7 +33,7 @@ test_headless = [] # used for testing headless display vk_interop = [] # used for texture import from Vulkan [dependencies.glutin] -version = "0.27" +version = "0.28" features = [] optional = true From 3d3a2b9a5973127477cab088f5c0f070d7cc5c8b Mon Sep 17 00:00:00 2001 From: est31 Date: Thu, 2 Dec 2021 22:49:50 +0100 Subject: [PATCH 2/3] Update ourboros to 0.14 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index f23bfce206..3c8a446923 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -49,7 +49,7 @@ fnv = "1.0.5" gl_generator = "0.14" [dev-dependencies] -ouroboros = "0.13" +ouroboros = "0.14" cgmath = "0.18" genmesh = "0.6" image = "0.23" From ee2d4906fdf8685bb618d6cc4e04c4ffdf5d7c36 Mon Sep 17 00:00:00 2001 From: est31 Date: Thu, 2 Dec 2021 23:25:02 +0100 Subject: [PATCH 3/3] 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 }}