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