From 0dde7307c593f1156276a2697cd1ae3371ffe6c2 Mon Sep 17 00:00:00 2001 From: Myk Melez Date: Tue, 24 Jul 2018 16:23:01 -0700 Subject: [PATCH] temporarily disable MinGW builds --- .appveyor.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index cad9135..93d9a7c 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -2,10 +2,13 @@ environment: matrix: - TARGET: x86_64-pc-windows-msvc - TARGET: i686-pc-windows-msvc - - TARGET: x86_64-pc-windows-gnu - MSYS_BITS: 64 - - TARGET: i686-pc-windows-gnu - MSYS_BITS: 32 + # Temporarily disable MinGW builds due to https://github.com/rust-lang/rust/issues/47048. + # Once that issue is fixed, presumably by https://github.com/rust-lang/rust/pull/51989, + # we should reenable them. + # - TARGET: x86_64-pc-windows-gnu + # MSYS_BITS: 64 + # - TARGET: i686-pc-windows-gnu + # MSYS_BITS: 32 install: - ps: Start-FileDownload "https://static.rust-lang.org/dist/rust-nightly-${env:TARGET}.exe"