diff options
| author | bors <bors@rust-lang.org> | 2018-11-02 09:46:11 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2018-11-02 09:46:11 +0000 |
| commit | d0c869c323289c5ec4df83e1c9091fa0b3e2fc07 (patch) | |
| tree | 96455efa02f218bbc6b29de397b61b3d8a4f07ba | |
| parent | e8009885794e6108313683087fc6bfcd55145395 (diff) | |
| parent | ebf6507d1370bdbe919c63a1996204b3b9291e8a (diff) | |
| download | rust-d0c869c323289c5ec4df83e1c9091fa0b3e2fc07.tar.gz rust-d0c869c323289c5ec4df83e1c9091fa0b3e2fc07.zip | |
Auto merge of #54718 - froydnj:aarch64-ci, r=alexcrichton
add an appveyor config for aarch64-pc-windows-msvc This is purely a cargo-cult of things to solicit feedback from humans and/or automation failures. Not sure that the build artifacts would get packaged properly to start providing nightly tarballs for `libstd`, but this is at least a start. Fixes #53864.
| -rw-r--r-- | appveyor.yml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/appveyor.yml b/appveyor.yml index d519993f142..743e615c3f3 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -75,12 +75,14 @@ environment: # 32/64 bit MSVC and GNU deployment - RUST_CONFIGURE_ARGS: > --build=x86_64-pc-windows-msvc + --target=x86_64-pc-windows-msvc,aarch64-pc-windows-msvc --enable-full-tools --enable-profiler SCRIPT: python x.py dist DIST_REQUIRE_ALL_TOOLS: 1 DEPLOY: 1 CI_JOB_NAME: dist-x86_64-msvc + APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 Preview - RUST_CONFIGURE_ARGS: > --build=i686-pc-windows-msvc --target=i586-pc-windows-msvc @@ -144,9 +146,9 @@ install: # Note that the LLVM installer is an NSIS installer # # Original downloaded here came from - # http://releases.llvm.org/6.0.0/LLVM-6.0.0-win64.exe - - if NOT defined MINGW_URL appveyor-retry appveyor DownloadFile https://s3-us-west-1.amazonaws.com/rust-lang-ci2/rust-ci-mirror/LLVM-6.0.0-win64.exe - - if NOT defined MINGW_URL .\LLVM-6.0.0-win64.exe /S /NCRC /D=C:\clang-rust + # http://releases.llvm.org/7.0.0/LLVM-7.0.0-win64.exe + - if NOT defined MINGW_URL appveyor-retry appveyor DownloadFile https://s3-us-west-1.amazonaws.com/rust-lang-ci2/rust-ci-mirror/LLVM-7.0.0-win64.exe + - if NOT defined MINGW_URL .\LLVM-7.0.0-win64.exe /S /NCRC /D=C:\clang-rust - if NOT defined MINGW_URL set RUST_CONFIGURE_ARGS=%RUST_CONFIGURE_ARGS% --set llvm.clang-cl=C:\clang-rust\bin\clang-cl.exe # Here we do a pretty heinous thing which is to mangle the MinGW installation |
