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