]> git.lizzy.rs Git - rust.git/blob - appveyor.yml
Auto merge of #43568 - arielb1:constant-recovery, r=eddyb
[rust.git] / appveyor.yml
1 environment:
2   SCCACHE_BUCKET: rust-lang-ci-sccache
3   AWS_ACCESS_KEY_ID: AKIAIMX7VLAS3PZAVLUQ
4   AWS_SECRET_ACCESS_KEY:
5     secure: 1UkmbiDd15tWtYbMm5O2Uqm0b0Ur8v1MoSlydxl4ojcroPeerRMlUges0l57py8c
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=i586-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 choco install -y InnoSetup
149   - set PATH="C:\Program Files (x86)\Inno Setup 5";%PATH%
150
151   # Help debug some handle issues on AppVeyor
152   - appveyor-retry appveyor DownloadFile https://s3.amazonaws.com/rust-lang-ci/rust-ci-mirror/2017-05-15-Handle.zip
153   - mkdir handle
154   - 7z x -ohandle 2017-05-15-Handle.zip
155   - set PATH=%PATH%;%CD%\handle
156   - handle.exe -accepteula -help
157
158   # Attempt to debug sccache failures
159   - set SCCACHE_ERROR_LOG=%CD%/sccache.log
160
161 test_script:
162   - if not exist C:\cache\rustsrc\NUL mkdir C:\cache\rustsrc
163   - sh src/ci/init_repo.sh . /c/cache/rustsrc
164   - set SRC=.
165   - set NO_CCACHE=1
166   - sh src/ci/run.sh
167
168 on_failure:
169   - cat %CD%\sccache.log || exit 0
170
171 branches:
172   only:
173     - auto
174
175 before_deploy:
176   - ps: |
177         New-Item -Path deploy -ItemType directory
178         Remove-Item -Recurse -Force build\dist\doc
179         Get-ChildItem -Path build\dist | Move-Item -Destination deploy
180         Get-ChildItem -Path deploy | Foreach-Object {
181           Push-AppveyorArtifact $_.FullName -FileName ${env:APPVEYOR_REPO_COMMIT}/$_
182         }
183
184 deploy:
185   - provider: S3
186     skip_cleanup: true
187     access_key_id: AKIAIPQVNYF2T3DTYIWQ
188     secret_access_key:
189       secure: +11jsUNFTQ9dq5Ad1i2+PeUJaXluFJ0zIJAXESE1dFT3Kdjku4/eDdgyjgsB6GnV
190     bucket: rust-lang-ci
191     set_public: true
192     region: us-east-1
193     artifact: /.*/
194     folder: rustc-builds
195     on:
196       branch: auto
197       DEPLOY: 1
198     max_error_retry: 5
199
200   # This provider is the same as the one above except that it has a slightly
201   # different upload directory and a slightly different trigger
202   - provider: S3
203     skip_cleanup: true
204     access_key_id: AKIAIPQVNYF2T3DTYIWQ
205     secret_access_key:
206       secure: +11jsUNFTQ9dq5Ad1i2+PeUJaXluFJ0zIJAXESE1dFT3Kdjku4/eDdgyjgsB6GnV
207     bucket: rust-lang-ci
208     set_public: true
209     region: us-east-1
210     artifact: /.*/
211     folder: rustc-builds-alt
212     on:
213       branch: auto
214       DEPLOY_ALT: 1
215     max_error_retry: 5
216
217 # init:
218 #   - ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
219 # on_finish:
220 #   - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))