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