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