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