]> git.lizzy.rs Git - rust.git/blob - appveyor.yml
Rollup merge of #41135 - japaric:unstable-docs, r=steveklabnik
[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   # The MinGW builds unfortunately have to both download a custom toolchain and
24   # avoid the one installed by AppVeyor by default. Interestingly, though, for
25   # different reasons!
26   #
27   # For 32-bit the installed gcc toolchain on AppVeyor uses the pthread
28   # threading model. This is unfortunately not what we want, and if we compile
29   # with it then there's lots of link errors in the standard library (undefined
30   # references to pthread symbols).
31   #
32   # For 64-bit the installed gcc toolchain is currently 5.3.0 which
33   # unfortunately segfaults on Windows with --enable-llvm-assertions (segfaults
34   # in LLVM). See rust-lang/rust#28445 for more information, but to work around
35   # this we go back in time to 4.9.2 specifically.
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   #
42   # And as a final point of note, the 32-bit MinGW build using the makefiles do
43   # *not* use debug assertions and llvm assertions. This is because they take
44   # too long on appveyor and this is tested by rustbuild below.
45   - MSYS_BITS: 32
46     RUST_CONFIGURE_ARGS: --build=i686-pc-windows-gnu --enable-ninja
47     SCRIPT: python x.py test
48     MINGW_URL: https://s3.amazonaws.com/rust-lang-ci/rust-ci-mirror
49     MINGW_ARCHIVE: i686-6.2.0-release-win32-dwarf-rt_v5-rev1.7z
50     MINGW_DIR: mingw32
51   - MSYS_BITS: 64
52     SCRIPT: python x.py test
53     RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-gnu --enable-ninja
54     MINGW_URL: https://s3.amazonaws.com/rust-lang-ci/rust-ci-mirror
55     MINGW_ARCHIVE: x86_64-6.2.0-release-win32-seh-rt_v5-rev1.7z
56     MINGW_DIR: mingw64
57
58   # 32/64 bit MSVC and GNU deployment
59   - RUST_CONFIGURE_ARGS: >
60       --build=x86_64-pc-windows-msvc
61       --enable-extended
62     SCRIPT: python x.py dist
63     DEPLOY: 1
64   - RUST_CONFIGURE_ARGS: >
65       --build=i686-pc-windows-msvc
66       --target=i586-pc-windows-msvc
67       --enable-extended
68     SCRIPT: python x.py dist
69     DEPLOY: 1
70   - MSYS_BITS: 32
71     RUST_CONFIGURE_ARGS: --build=i686-pc-windows-gnu --enable-extended --enable-ninja
72     SCRIPT: python x.py dist
73     MINGW_URL: https://s3.amazonaws.com/rust-lang-ci/rust-ci-mirror
74     MINGW_ARCHIVE: i686-6.2.0-release-win32-dwarf-rt_v5-rev1.7z
75     MINGW_DIR: mingw32
76     DEPLOY: 1
77   - MSYS_BITS: 64
78     SCRIPT: python x.py dist
79     RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-gnu --enable-extended --enable-ninja
80     MINGW_URL: https://s3.amazonaws.com/rust-lang-ci/rust-ci-mirror
81     MINGW_ARCHIVE: x86_64-6.2.0-release-win32-seh-rt_v5-rev1.7z
82     MINGW_DIR: mingw64
83     DEPLOY: 1
84
85   # "alternate" deployment, see .travis.yml for more info
86   - MSYS_BITS: 64
87     RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc --enable-extended
88     SCRIPT: python x.py dist
89     DEPLOY_ALT: 1
90
91 matrix:
92   fast_finish: true
93
94 clone_depth: 1
95 build: false
96
97 install:
98   # If we need to download a custom MinGW, do so here and set the path
99   # appropriately.
100   #
101   # Note that this *also* means that we're not using what is typically
102   # /mingw32/bin/python2.7.exe, which is a "correct" python interpreter where
103   # /usr/bin/python2.7.exe is not. To ensure we use the right interpreter we
104   # move `C:\Python27` ahead in PATH and then also make sure the `python2.7.exe`
105   # file exists in there (which it doesn't by default).
106   - if defined MINGW_URL appveyor-retry appveyor DownloadFile %MINGW_URL%/%MINGW_ARCHIVE%
107   - if defined MINGW_URL 7z x -y %MINGW_ARCHIVE% > nul
108   - if defined MINGW_URL set PATH=%CD%\%MINGW_DIR%\bin;C:\msys64\usr\bin;%PATH%
109
110   # Otherwise pull in the MinGW installed on appveyor
111   - if NOT defined MINGW_URL set PATH=C:\msys64\mingw%MSYS_BITS%\bin;C:\msys64\usr\bin;%PATH%
112
113   # Prefer the "native" Python as LLVM has trouble building with MSYS sometimes
114   - copy C:\Python27\python.exe C:\Python27\python2.7.exe
115   - set PATH=C:\Python27;%PATH%
116
117   # Download and install sccache
118   - appveyor-retry appveyor DownloadFile https://s3.amazonaws.com/rust-lang-ci/rust-ci-mirror/2017-04-04-sccache-x86_64-pc-windows-msvc
119   - mv 2017-04-04-sccache-x86_64-pc-windows-msvc sccache.exe
120   - set PATH=%PATH%;%CD%
121
122   # Download and install ninja
123   #
124   # Note that this is originally from the github releases patch of Ninja
125   - appveyor-retry appveyor DownloadFile https://s3.amazonaws.com/rust-lang-ci/rust-ci-mirror/2017-03-15-ninja-win.zip
126   - 7z x 2017-03-15-ninja-win.zip
127   # - set PATH=%PATH%;%CD% -- this already happens above for sccache
128
129   # Install InnoSetup to get `iscc` used to produce installers
130   - appveyor-retry choco install -y InnoSetup
131   - set PATH="C:\Program Files (x86)\Inno Setup 5";%PATH%
132
133   # Help debug some handle issues on AppVeyor
134   - ps: Invoke-WebRequest -Uri https://download.sysinternals.com/files/Handle.zip -OutFile handle.zip
135   - mkdir handle
136   - ps: Expand-Archive handle.zip -dest handle
137   - set PATH=%PATH%;%CD%\handle
138   - handle.exe -accepteula -help
139
140   # Attempt to debug sccache failures
141   - set SCCACHE_ERROR_LOG=%CD%/sccache.log
142
143 test_script:
144   - if not exist C:\cache\rustsrc\NUL mkdir C:\cache\rustsrc
145   - sh src/ci/init_repo.sh . /c/cache/rustsrc
146   - set SRC=.
147   - set NO_CCACHE=1
148   - sh src/ci/run.sh
149
150 on_failure:
151   - cat %CD%\sccache.log
152   - cat C:\Users\appveyor\AppData\Local\Temp\1\build-cache-logs\*.log
153
154 cache:
155   - C:\cache\rustsrc
156   - "build/i686-pc-windows-msvc/llvm -> src/rustllvm/llvm-rebuild-trigger"
157   - "build/x86_64-pc-windows-msvc/llvm -> src/rustllvm/llvm-rebuild-trigger"
158   - "i686-pc-windows-msvc/llvm -> src/rustllvm/llvm-rebuild-trigger"
159   - "x86_64-pc-windows-msvc/llvm -> src/rustllvm/llvm-rebuild-trigger"
160
161 branches:
162   only:
163     - auto
164
165 before_deploy:
166   - ps: |
167         New-Item -Path deploy -ItemType directory
168         Remove-Item -Recurse -Force build\dist\doc
169         Get-ChildItem -Path build\dist | Move-Item -Destination deploy
170         Get-ChildItem -Path deploy | Foreach-Object {
171           Push-AppveyorArtifact $_.FullName -FileName ${env:APPVEYOR_REPO_COMMIT}/$_
172         }
173
174 deploy:
175   - provider: S3
176     skip_cleanup: true
177     access_key_id: AKIAIPQVNYF2T3DTYIWQ
178     secret_access_key:
179       secure: +11jsUNFTQ9dq5Ad1i2+PeUJaXluFJ0zIJAXESE1dFT3Kdjku4/eDdgyjgsB6GnV
180     bucket: rust-lang-ci
181     set_public: true
182     region: us-east-1
183     artifact: /.*/
184     folder: rustc-builds
185     on:
186       branch: auto
187       DEPLOY: 1
188     max_error_retry: 5
189
190   # This provider is the same as the one above except that it has a slightly
191   # different upload directory and a slightly different trigger
192   - provider: S3
193     skip_cleanup: true
194     access_key_id: AKIAIPQVNYF2T3DTYIWQ
195     secret_access_key:
196       secure: +11jsUNFTQ9dq5Ad1i2+PeUJaXluFJ0zIJAXESE1dFT3Kdjku4/eDdgyjgsB6GnV
197     bucket: rust-lang-ci
198     set_public: true
199     region: us-east-1
200     artifact: /.*/
201     folder: rustc-builds-alt
202     on:
203       branch: auto
204       DEPLOY_ALT: 1
205     max_error_retry: 5
206
207 # init:
208 #   - ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
209 # on_finish:
210 #   - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))