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