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