From: E. Dunham Date: Mon, 10 Oct 2016 18:11:56 +0000 (-0700) Subject: Expand matrix for #3186 X-Git-Tag: archive/raspbian/0.35.0-2+rpi1~3^2^2^2^2^2^2^2~22^2~13^2~40^2~1 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=d9f7d7205e2b99f178674a87400569450864b906;p=cargo.git Expand matrix for #3186 --- diff --git a/appveyor.yml b/appveyor.yml index a6009fa5f..7c9839c2f 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,19 +1,25 @@ environment: CFG_DISABLE_CROSS_TESTS: 1 matrix: - - MSVC: 1 + - TARGET: i686-pc-windows-msvc + MSVC: 1 BITS: 32 - TARGET: i686-pc-windows-msvc ARCH: x86 - - MSVC: 1 + - TARGET: x86_64-pc-windows-msvc + MSVC: 1 BITS: 64 - TARGET: x86_64-pc-windows-msvc ARCH: amd64 + - TARGET: x86_64-pc-windows-gnu + ARCH: amd64 + BITS: 32 + - TARGET: i686-pc-windows-gnu + ARCH: x86 + BITS: 64 install: + - IF "%MSVC%"=="" set PATH=C:\msys64\mingw%BITS%\bin;C:\msys64\usr\bin;%PATH% - python src/etc/install-deps.py - python src/etc/dl-snapshot.py %TARGET% - - call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" %ARCH% - SET PATH=%PATH%;%cd%/rustc/bin - SET PATH=%PATH%;%cd%/target/snapshot/bin - rustc -V @@ -23,7 +29,3 @@ build: false test_script: - cargo test - -branches: - only: - - master