forked from rust-lang/stdarch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.appveyor.yml
30 lines (24 loc) · 969 Bytes
/
.appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
environment:
# We don't want to do identical comdat folding as it messes up the ability to
# generate lossless backtraces in some cases. This is enabled by rustc by
# default so pass a flag to disable it to ensure our tests work ok.
RUSTFLAGS: -Clink-args=/OPT:NOICF
# VS2017 looks to be the first with avx-512 support, notably in dumpbin
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
matrix:
- TARGET: x86_64-pc-windows-msvc
install:
# Install rust, x86_64-pc-windows-msvc host
- appveyor-retry appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
- rustup-init.exe -y --default-host x86_64-pc-windows-msvc --default-toolchain nightly
- set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
- if NOT "%TARGET%" == "x86_64-pc-windows-msvc" rustup target add %TARGET%
- rustc -vV
- cargo -vV
build: false
test_script:
- set STDSIMD_DISABLE_ASSERT_INSTR=1
- C:\msys64\usr\bin\sh ci\run.sh
branches:
only:
- master