From 82b9c44132d0f1c286ebead0172d7eaae9fe5f55 Mon Sep 17 00:00:00 2001 From: Nolan Darilek Date: Tue, 10 Sep 2019 18:34:59 -0500 Subject: [PATCH] Try to fix 32-bit builds. --- appveyor.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/appveyor.yml b/appveyor.yml index ea4dccd..18c30b5 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -93,6 +93,22 @@ environment: # If you only care about stable channel build failures, uncomment the following line: # #- channel: beta +# Visual Studio developer environment for x86/x64 +# https://www.appveyor.com/docs/lang/cpp/#visual-studio +for: +- + matrix: + only: + - platform: x86 + init: + - call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvars32.bat" +- + matrix: + only: + - platform: x64 + init: + - call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvars64.bat" + ## Install Script ## # This is the most important part of the Appveyor configuration. This installs the version of Rust