]> git.lizzy.rs Git - rust.git/blob - appveyor.yml
Auto merge of #57997 - nitnelave:master, r=RalfJung
[rust.git] / appveyor.yml
1 environment:
2
3   # By default schannel checks revocation of certificates unlike some other SSL
4   # backends, but we've historically had problems on CI where a revocation
5   # server goes down presumably. See #43333 for more info
6   CARGO_HTTP_CHECK_REVOKE: false
7
8   # Execute the builds on GCE instead of Hyper-V. Those builders have a 3-4
9   # minute startup overhead, but AppVeyor support recommended this as a
10   # possible solution for #58160 (spurious 259 exit codes)
11   appveyor_build_worker_cloud: gce
12
13   matrix:
14   # 32/64 bit MSVC tests
15   - MSYS_BITS: 64
16     RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc --enable-profiler
17     SCRIPT: python x.py test
18     CI_JOB_NAME: x86_64-msvc
19   - MSYS_BITS: 32
20     RUST_CONFIGURE_ARGS: --build=i686-pc-windows-msvc
21     SCRIPT: make appveyor-subset-1
22     CI_JOB_NAME: i686-msvc-1
23   - MSYS_BITS: 32
24     RUST_CONFIGURE_ARGS: --build=i686-pc-windows-msvc
25     SCRIPT: make appveyor-subset-2
26     CI_JOB_NAME: i686-msvc-2
27
28   # MSVC aux tests
29   - MSYS_BITS: 64
30     RUST_CHECK_TARGET: check-aux EXCLUDE_CARGO=1
31     RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc
32     CI_JOB_NAME: x86_64-msvc-aux
33   - MSYS_BITS: 64
34     SCRIPT: python x.py test src/tools/cargotest src/tools/cargo
35     RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc
36     CI_JOB_NAME: x86_64-msvc-cargo
37
38   # MSVC tools tests
39   - MSYS_BITS: 64
40     SCRIPT: src/ci/docker/x86_64-gnu-tools/checktools.sh x.py /tmp/toolstates.json windows
41     RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc --save-toolstates=/tmp/toolstates.json --enable-test-miri
42     CI_JOB_NAME: x86_64-msvc-tools
43
44   # 32/64-bit MinGW builds.
45   #
46   # We are using MinGW with posix threads since LLVM does not compile with
47   # the win32 threads version due to missing support for C++'s std::thread.
48   #
49   # Instead of relying on the MinGW version installed on appveryor we download
50   # and install one ourselves so we won't be surprised by changes to appveyor's
51   # build image.
52   #
53   # Finally, note that the downloads below are all in the `rust-lang-ci` S3
54   # bucket, but they cleraly didn't originate there! The downloads originally
55   # came from the mingw-w64 SourceForge download site. Unfortunately
56   # SourceForge is notoriously flaky, so we mirror it on our own infrastructure.
57   - MSYS_BITS: 32
58     RUST_CONFIGURE_ARGS: --build=i686-pc-windows-gnu
59     SCRIPT: make appveyor-subset-1
60     MINGW_URL: https://s3-us-west-1.amazonaws.com/rust-lang-ci2/rust-ci-mirror
61     MINGW_ARCHIVE: i686-6.3.0-release-posix-dwarf-rt_v5-rev2.7z
62     MINGW_DIR: mingw32
63     CI_JOB_NAME: i686-mingw-1
64   - MSYS_BITS: 32
65     RUST_CONFIGURE_ARGS: --build=i686-pc-windows-gnu
66     SCRIPT: make appveyor-subset-2
67     MINGW_URL: https://s3-us-west-1.amazonaws.com/rust-lang-ci2/rust-ci-mirror
68     MINGW_ARCHIVE: i686-6.3.0-release-posix-dwarf-rt_v5-rev2.7z
69     MINGW_DIR: mingw32
70     CI_JOB_NAME: i686-mingw-2
71   - MSYS_BITS: 64
72     SCRIPT: python x.py test
73     RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-gnu
74     MINGW_URL: https://s3-us-west-1.amazonaws.com/rust-lang-ci2/rust-ci-mirror
75     MINGW_ARCHIVE: x86_64-6.3.0-release-posix-seh-rt_v5-rev2.7z
76     MINGW_DIR: mingw64
77     CI_JOB_NAME: x86_64-mingw
78
79   # 32/64 bit MSVC and GNU deployment
80   - RUST_CONFIGURE_ARGS: >
81       --build=x86_64-pc-windows-msvc
82       --target=x86_64-pc-windows-msvc,aarch64-pc-windows-msvc
83       --enable-full-tools
84       --enable-profiler
85     SCRIPT: python x.py dist
86     DIST_REQUIRE_ALL_TOOLS: 1
87     DEPLOY: 1
88     CI_JOB_NAME: dist-x86_64-msvc
89     APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 Preview
90   - RUST_CONFIGURE_ARGS: >
91       --build=i686-pc-windows-msvc
92       --target=i586-pc-windows-msvc
93       --enable-full-tools
94       --enable-profiler
95     SCRIPT: python x.py dist
96     DIST_REQUIRE_ALL_TOOLS: 1
97     DEPLOY: 1
98     CI_JOB_NAME: dist-i686-msvc
99   - MSYS_BITS: 32
100     RUST_CONFIGURE_ARGS: --build=i686-pc-windows-gnu --enable-full-tools
101     SCRIPT: python x.py dist
102     MINGW_URL: https://s3-us-west-1.amazonaws.com/rust-lang-ci2/rust-ci-mirror
103     MINGW_ARCHIVE: i686-6.3.0-release-posix-dwarf-rt_v5-rev2.7z
104     MINGW_DIR: mingw32
105     DIST_REQUIRE_ALL_TOOLS: 1
106     DEPLOY: 1
107     CI_JOB_NAME: dist-i686-mingw
108   - MSYS_BITS: 64
109     SCRIPT: python x.py dist
110     RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-gnu --enable-full-tools
111     MINGW_URL: https://s3-us-west-1.amazonaws.com/rust-lang-ci2/rust-ci-mirror
112     MINGW_ARCHIVE: x86_64-6.3.0-release-posix-seh-rt_v5-rev2.7z
113     MINGW_DIR: mingw64
114     DIST_REQUIRE_ALL_TOOLS: 1
115     DEPLOY: 1
116     CI_JOB_NAME: dist-x86_64-mingw
117
118   # "alternate" deployment, see .travis.yml for more info
119   - MSYS_BITS: 64
120     RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc --enable-extended --enable-profiler
121     SCRIPT: python x.py dist
122     DEPLOY_ALT: 1
123     CI_JOB_NAME: dist-x86_64-msvc-alt
124
125 matrix:
126   fast_finish: true
127
128 clone_depth: 2
129 build: false
130
131 install:
132   # If we need to download a custom MinGW, do so here and set the path
133   # appropriately.
134   #
135   # Note that this *also* means that we're not using what is typically
136   # /mingw32/bin/python2.7.exe, which is a "correct" python interpreter where
137   # /usr/bin/python2.7.exe is not. To ensure we use the right interpreter we
138   # move `C:\Python27` ahead in PATH and then also make sure the `python2.7.exe`
139   # file exists in there (which it doesn't by default).
140   - if defined MINGW_URL appveyor-retry appveyor DownloadFile %MINGW_URL%/%MINGW_ARCHIVE%
141   - if defined MINGW_URL 7z x -y %MINGW_ARCHIVE% > nul
142   - if defined MINGW_URL set PATH=%CD%\%MINGW_DIR%\bin;C:\msys64\usr\bin;%PATH%
143
144   # If we're compiling for MSVC then we, like most other distribution builders,
145   # switch to clang as the compiler. This'll allow us eventually to enable LTO
146   # amongst LLVM and rustc. Note that we only do this on MSVC as I don't think
147   # clang has an output mode compatible with MinGW that we need. If it does we
148   # should switch to clang for MinGW as well!
149   #
150   # Note that the LLVM installer is an NSIS installer
151   #
152   # Original downloaded here came from
153   # http://releases.llvm.org/7.0.0/LLVM-7.0.0-win64.exe
154   - 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
155   - if NOT defined MINGW_URL .\LLVM-7.0.0-win64.exe /S /NCRC /D=C:\clang-rust
156   - if NOT defined MINGW_URL set RUST_CONFIGURE_ARGS=%RUST_CONFIGURE_ARGS% --set llvm.clang-cl=C:\clang-rust\bin\clang-cl.exe
157
158   # Here we do a pretty heinous thing which is to mangle the MinGW installation
159   # we just had above. Currently, as of this writing, we're using MinGW-w64
160   # builds of gcc, and that's currently at 6.3.0. We use 6.3.0 as it appears to
161   # be the first version which contains a fix for #40546, builds randomly
162   # failing during LLVM due to ar.exe/ranlib.exe failures.
163   #
164   # Unfortunately, though, 6.3.0 *also* is the first version of MinGW-w64 builds
165   # to contain a regression in gdb (#40184). As a result if we were to use the
166   # gdb provided (7.11.1) then we would fail all debuginfo tests.
167   #
168   # In order to fix spurious failures (pretty high priority) we use 6.3.0. To
169   # avoid disabling gdb tests we download an *old* version of gdb, specifically
170   # that found inside the 6.2.0 distribution. We then overwrite the 6.3.0 gdb
171   # with the 6.2.0 gdb to get tests passing.
172   #
173   # Note that we don't literally overwrite the gdb.exe binary because it appears
174   # to just use gdborig.exe, so that's the binary we deal with instead.
175   - if defined MINGW_URL appveyor-retry appveyor DownloadFile %MINGW_URL%/2017-04-20-%MSYS_BITS%bit-gdborig.exe
176   - if defined MINGW_URL mv 2017-04-20-%MSYS_BITS%bit-gdborig.exe %MINGW_DIR%\bin\gdborig.exe
177
178   # Otherwise pull in the MinGW installed on appveyor
179   - if NOT defined MINGW_URL set PATH=C:\msys64\mingw%MSYS_BITS%\bin;C:\msys64\usr\bin;%PATH%
180
181   # Prefer the "native" Python as LLVM has trouble building with MSYS sometimes
182   - copy C:\Python27\python.exe C:\Python27\python2.7.exe
183   - set PATH=C:\Python27;%PATH%
184
185   # Download and install sccache
186   - appveyor-retry appveyor DownloadFile https://s3-us-west-1.amazonaws.com/rust-lang-ci2/rust-ci-mirror/2018-04-26-sccache-x86_64-pc-windows-msvc
187   - mv 2018-04-26-sccache-x86_64-pc-windows-msvc sccache.exe
188   - set PATH=%PATH%;%CD%
189
190   # Download and install ninja
191   #
192   # Note that this is originally from the github releases patch of Ninja
193   - appveyor-retry appveyor DownloadFile https://s3-us-west-1.amazonaws.com/rust-lang-ci2/rust-ci-mirror/2017-03-15-ninja-win.zip
194   - 7z x 2017-03-15-ninja-win.zip
195   - set RUST_CONFIGURE_ARGS=%RUST_CONFIGURE_ARGS% --enable-ninja
196   # - set PATH=%PATH%;%CD% -- this already happens above for sccache
197
198   # Install InnoSetup to get `iscc` used to produce installers
199   - appveyor-retry appveyor DownloadFile https://s3-us-west-1.amazonaws.com/rust-lang-ci2/rust-ci-mirror/2017-08-22-is.exe
200   - 2017-08-22-is.exe /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-
201   - set PATH="C:\Program Files (x86)\Inno Setup 5";%PATH%
202
203   # Help debug some handle issues on AppVeyor
204   - appveyor-retry appveyor DownloadFile https://s3-us-west-1.amazonaws.com/rust-lang-ci2/rust-ci-mirror/2017-05-15-Handle.zip
205   - mkdir handle
206   - 7z x -ohandle 2017-05-15-Handle.zip
207   - set PATH=%PATH%;%CD%\handle
208   - handle.exe -accepteula -help
209
210 test_script:
211   - if not exist C:\cache\rustsrc\NUL mkdir C:\cache\rustsrc
212   - sh src/ci/init_repo.sh . /c/cache/rustsrc
213   - set SRC=.
214   - set NO_CCACHE=1
215   - sh src/ci/run.sh
216
217 on_failure:
218   # Dump crash log
219   - set PATH=%PATH%;"C:\Program Files (x86)\Windows Kits\10\Debuggers\X64"
220   - if exist %LOCALAPPDATA%\CrashDumps for %%f in (%LOCALAPPDATA%\CrashDumps\*) do cdb -c "k;q" -G -z "%%f"
221
222 branches:
223   only:
224     - auto
225
226 before_deploy:
227   - ps: |
228         New-Item -Path deploy -ItemType directory
229         Remove-Item -Recurse -Force build\dist\doc
230         Get-ChildItem -Path build\dist | Move-Item -Destination deploy
231         Get-ChildItem -Path deploy | Foreach-Object {
232           Push-AppveyorArtifact $_.FullName -FileName ${env:APPVEYOR_REPO_COMMIT}/$_
233         }
234
235 deploy:
236   - provider: S3
237     access_key_id: $(AWS_ACCESS_KEY_ID)
238     secret_access_key: $(AWS_SECRET_ACCESS_KEY)
239     bucket: rust-lang-ci2
240     set_public: true
241     region: us-west-1
242     artifact: /.*/
243     folder: rustc-builds
244     on:
245       branch: auto
246       DEPLOY: 1
247     max_error_retry: 5
248
249   # This provider is the same as the one above except that it has a slightly
250   # different upload directory and a slightly different trigger
251   - provider: S3
252     access_key_id: $(AWS_ACCESS_KEY_ID)
253     secret_access_key: $(AWS_SECRET_ACCESS_KEY)
254     bucket: rust-lang-ci2
255     set_public: true
256     region: us-west-1
257     artifact: /.*/
258     folder: rustc-builds-alt
259     on:
260       branch: auto
261       DEPLOY_ALT: 1
262     max_error_retry: 5
263
264 # init:
265 #   - ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
266 # on_finish:
267 #   - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))