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