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