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