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