commit 21ee0b9093fd5616598d25b6194a3790cf45075e
parent 58d29d39bf5f37468be6dc6e2834d5767b6b0c1e
Author: Eric Scouten <scouten@adobe.com>
Date: Tue, 14 Nov 2023 17:10:28 -0800
Disable Windows builds with latest Rust version (#342)
Workaround for https://github.com/rust-lang/cargo/issues/12979.
Diffstat:
1 file changed, 5 insertions(+), 0 deletions(-)
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
@@ -17,6 +17,11 @@ jobs:
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
rust_version: [stable, 1.70.0]
+ exclude:
+ - os: windows-latest
+ rust_version: stable
+ # Disable latest Windows version due to build instability.
+ # See https://github.com/rust-lang/cargo/issues/12979.
steps:
- name: Checkout repository