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