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