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