2016-10-07 16:43:26 +00:00
|
|
|
environment:
|
2018-11-13 21:42:05 +00:00
|
|
|
# This is required for at least an AArch64 compiler in one image, and is also
|
|
|
|
# going to soon be required for compiling LLVM.
|
|
|
|
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 Preview
|
2017-07-19 12:57:56 +00:00
|
|
|
|
|
|
|
# By default schannel checks revocation of certificates unlike some other SSL
|
|
|
|
# backends, but we've historically had problems on CI where a revocation
|
|
|
|
# server goes down presumably. See #43333 for more info
|
|
|
|
CARGO_HTTP_CHECK_REVOKE: false
|
|
|
|
|
2016-10-07 16:43:26 +00:00
|
|
|
matrix:
|
2017-11-28 15:19:54 +00:00
|
|
|
# MSVC tools tests
|
2019-03-09 23:48:58 +00:00
|
|
|
- CI_JOB_NAME: x86_64-msvc-tools
|
|
|
|
MSYS_BITS: 64
|
2017-12-04 14:31:57 +00:00
|
|
|
SCRIPT: src/ci/docker/x86_64-gnu-tools/checktools.sh x.py /tmp/toolstates.json windows
|
|
|
|
RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc --save-toolstates=/tmp/toolstates.json --enable-test-miri
|
2017-09-15 18:31:48 +00:00
|
|
|
|
2017-01-20 01:18:12 +00:00
|
|
|
matrix:
|
|
|
|
fast_finish: true
|
|
|
|
|
2017-12-29 16:05:15 +00:00
|
|
|
clone_depth: 2
|
2016-10-07 16:43:26 +00:00
|
|
|
build: false
|
|
|
|
|
|
|
|
install:
|
2019-03-31 21:56:09 +00:00
|
|
|
# Print which AppVeyor agent version we're running on.
|
|
|
|
- appveyor version
|
2016-10-07 16:43:26 +00:00
|
|
|
# If we need to download a custom MinGW, do so here and set the path
|
|
|
|
# appropriately.
|
|
|
|
#
|
|
|
|
# Note that this *also* means that we're not using what is typically
|
|
|
|
# /mingw32/bin/python2.7.exe, which is a "correct" python interpreter where
|
|
|
|
# /usr/bin/python2.7.exe is not. To ensure we use the right interpreter we
|
|
|
|
# move `C:\Python27` ahead in PATH and then also make sure the `python2.7.exe`
|
|
|
|
# file exists in there (which it doesn't by default).
|
2017-02-25 08:00:47 +00:00
|
|
|
- if defined MINGW_URL appveyor-retry appveyor DownloadFile %MINGW_URL%/%MINGW_ARCHIVE%
|
2016-10-07 16:43:26 +00:00
|
|
|
- if defined MINGW_URL 7z x -y %MINGW_ARCHIVE% > nul
|
2017-02-15 17:36:52 +00:00
|
|
|
- if defined MINGW_URL set PATH=%CD%\%MINGW_DIR%\bin;C:\msys64\usr\bin;%PATH%
|
2016-10-07 16:43:26 +00:00
|
|
|
|
2018-04-24 15:34:14 +00:00
|
|
|
# If we're compiling for MSVC then we, like most other distribution builders,
|
|
|
|
# switch to clang as the compiler. This'll allow us eventually to enable LTO
|
|
|
|
# amongst LLVM and rustc. Note that we only do this on MSVC as I don't think
|
|
|
|
# clang has an output mode compatible with MinGW that we need. If it does we
|
|
|
|
# should switch to clang for MinGW as well!
|
|
|
|
#
|
|
|
|
# Note that the LLVM installer is an NSIS installer
|
|
|
|
#
|
|
|
|
# Original downloaded here came from
|
2019-05-08 15:05:02 +00:00
|
|
|
# http://releases.llvm.org/8.0.0/LLVM-8.0.0-win64.exe
|
2019-05-28 20:20:43 +00:00
|
|
|
- if NOT defined MINGW_URL appveyor-retry appveyor DownloadFile https://rust-lang-ci2.s3.amazonaws.com/rust-ci-mirror/LLVM-8.0.0-win64.exe
|
2019-05-08 15:05:02 +00:00
|
|
|
- if NOT defined MINGW_URL .\LLVM-8.0.0-win64.exe /S /NCRC /D=C:\clang-rust
|
2018-04-24 15:34:14 +00:00
|
|
|
- if NOT defined MINGW_URL set RUST_CONFIGURE_ARGS=%RUST_CONFIGURE_ARGS% --set llvm.clang-cl=C:\clang-rust\bin\clang-cl.exe
|
|
|
|
|
2017-04-20 15:35:03 +00:00
|
|
|
# Here we do a pretty heinous thing which is to mangle the MinGW installation
|
|
|
|
# we just had above. Currently, as of this writing, we're using MinGW-w64
|
|
|
|
# builds of gcc, and that's currently at 6.3.0. We use 6.3.0 as it appears to
|
|
|
|
# be the first version which contains a fix for #40546, builds randomly
|
|
|
|
# failing during LLVM due to ar.exe/ranlib.exe failures.
|
|
|
|
#
|
|
|
|
# Unfortunately, though, 6.3.0 *also* is the first version of MinGW-w64 builds
|
|
|
|
# to contain a regression in gdb (#40184). As a result if we were to use the
|
|
|
|
# gdb provided (7.11.1) then we would fail all debuginfo tests.
|
|
|
|
#
|
|
|
|
# In order to fix spurious failures (pretty high priority) we use 6.3.0. To
|
|
|
|
# avoid disabling gdb tests we download an *old* version of gdb, specifically
|
|
|
|
# that found inside the 6.2.0 distribution. We then overwrite the 6.3.0 gdb
|
|
|
|
# with the 6.2.0 gdb to get tests passing.
|
|
|
|
#
|
|
|
|
# Note that we don't literally overwrite the gdb.exe binary because it appears
|
|
|
|
# to just use gdborig.exe, so that's the binary we deal with instead.
|
|
|
|
- if defined MINGW_URL appveyor-retry appveyor DownloadFile %MINGW_URL%/2017-04-20-%MSYS_BITS%bit-gdborig.exe
|
|
|
|
- if defined MINGW_URL mv 2017-04-20-%MSYS_BITS%bit-gdborig.exe %MINGW_DIR%\bin\gdborig.exe
|
|
|
|
|
2016-10-07 16:43:26 +00:00
|
|
|
# Otherwise pull in the MinGW installed on appveyor
|
|
|
|
- if NOT defined MINGW_URL set PATH=C:\msys64\mingw%MSYS_BITS%\bin;C:\msys64\usr\bin;%PATH%
|
|
|
|
|
2017-02-15 17:36:52 +00:00
|
|
|
# Prefer the "native" Python as LLVM has trouble building with MSYS sometimes
|
|
|
|
- copy C:\Python27\python.exe C:\Python27\python2.7.exe
|
|
|
|
- set PATH=C:\Python27;%PATH%
|
|
|
|
|
2016-12-12 19:36:52 +00:00
|
|
|
# Download and install sccache
|
2019-05-28 20:20:43 +00:00
|
|
|
- appveyor-retry appveyor DownloadFile https://rust-lang-ci2.s3.amazonaws.com/rust-ci-mirror/2018-04-26-sccache-x86_64-pc-windows-msvc
|
2018-04-24 15:34:14 +00:00
|
|
|
- mv 2018-04-26-sccache-x86_64-pc-windows-msvc sccache.exe
|
2017-02-24 21:16:54 +00:00
|
|
|
- set PATH=%PATH%;%CD%
|
2016-12-12 19:36:52 +00:00
|
|
|
|
2017-03-15 14:35:35 +00:00
|
|
|
# Download and install ninja
|
|
|
|
#
|
|
|
|
# Note that this is originally from the github releases patch of Ninja
|
2019-05-28 20:20:43 +00:00
|
|
|
- appveyor-retry appveyor DownloadFile https://rust-lang-ci2.s3.amazonaws.com/rust-ci-mirror/2017-03-15-ninja-win.zip
|
2017-03-15 14:35:35 +00:00
|
|
|
- 7z x 2017-03-15-ninja-win.zip
|
2017-02-25 17:53:46 +00:00
|
|
|
- set RUST_CONFIGURE_ARGS=%RUST_CONFIGURE_ARGS% --enable-ninja
|
2017-03-15 14:35:35 +00:00
|
|
|
# - set PATH=%PATH%;%CD% -- this already happens above for sccache
|
|
|
|
|
2017-01-21 01:03:06 +00:00
|
|
|
# Install InnoSetup to get `iscc` used to produce installers
|
2019-05-28 20:20:43 +00:00
|
|
|
- appveyor-retry appveyor DownloadFile https://rust-lang-ci2.s3.amazonaws.com/rust-ci-mirror/2017-08-22-is.exe
|
2017-08-23 02:42:28 +00:00
|
|
|
- 2017-08-22-is.exe /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-
|
2017-01-21 01:03:06 +00:00
|
|
|
- set PATH="C:\Program Files (x86)\Inno Setup 5";%PATH%
|
|
|
|
|
2016-12-29 23:58:57 +00:00
|
|
|
# Help debug some handle issues on AppVeyor
|
2019-05-28 20:20:43 +00:00
|
|
|
- appveyor-retry appveyor DownloadFile https://rust-lang-ci2.s3.amazonaws.com/rust-ci-mirror/2017-05-15-Handle.zip
|
2016-12-29 23:58:57 +00:00
|
|
|
- mkdir handle
|
2017-05-14 19:41:42 +00:00
|
|
|
- 7z x -ohandle 2017-05-15-Handle.zip
|
2016-12-29 23:58:57 +00:00
|
|
|
- set PATH=%PATH%;%CD%\handle
|
|
|
|
- handle.exe -accepteula -help
|
|
|
|
|
2016-10-07 16:43:26 +00:00
|
|
|
test_script:
|
2017-04-04 21:51:16 +00:00
|
|
|
- if not exist C:\cache\rustsrc\NUL mkdir C:\cache\rustsrc
|
|
|
|
- sh src/ci/init_repo.sh . /c/cache/rustsrc
|
2016-11-16 20:31:19 +00:00
|
|
|
- set SRC=.
|
|
|
|
- set NO_CCACHE=1
|
2019-02-06 14:16:50 +00:00
|
|
|
- sh src/ci/run.sh
|
2016-10-07 16:43:26 +00:00
|
|
|
|
|
|
|
branches:
|
|
|
|
only:
|
|
|
|
- auto
|