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