From d802763867ef316f1e0daa8d99d011ca1711be3f Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Fri, 26 Oct 2018 16:28:56 +0200 Subject: [PATCH] Appveyor: Only run `cargo test` on x86_64 Many parts of the `x86_64` library are not available on 32-bit x86 and we currently don't do much target dependent conditional compilation in blog_os since we only support a single architecture at the moment. --- .appveyor.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.appveyor.yml b/.appveyor.yml index 5f40248e..e0c30afb 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -91,5 +91,6 @@ before_test: # environment variable. test_script: - bootimage build - - cargo test + - if %target%==x86_64-pc-windows-gnu cargo test + - if %target%==x86_64-pc-windows-msvc cargo test - bootimage test