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