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