]> git.lizzy.rs Git - rust.git/blob - appveyor.yml
Rollup merge of #40035 - er-1:master, r=alexcrichton
[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
47     SCRIPT: python x.py test
48     MINGW_URL: https://s3.amazonaws.com/rust-lang-ci
49     MINGW_ARCHIVE: i686-4.9.2-release-win32-dwarf-rt_v4-rev4.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
54     MINGW_URL: https://s3.amazonaws.com/rust-lang-ci
55     MINGW_ARCHIVE: x86_64-4.9.2-release-win32-seh-rt_v4-rev4.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
72     SCRIPT: python x.py dist
73     MINGW_URL: https://s3.amazonaws.com/rust-lang-ci
74     MINGW_ARCHIVE: i686-4.9.2-release-win32-dwarf-rt_v4-rev4.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
80     MINGW_URL: https://s3.amazonaws.com/rust-lang-ci
81     MINGW_ARCHIVE: x86_64-4.9.2-release-win32-seh-rt_v4-rev4.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 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 DownloadFile https://s3.amazonaws.com/rust-lang-ci/rust-ci-mirror/2017-02-24-sccache-x86_64-pc-windows-msvc
119   - mv 2017-02-24-sccache-x86_64-pc-windows-msvc sccache
120   - set PATH=%PATH%;%CD%
121
122   # Install InnoSetup to get `iscc` used to produce installers
123   - choco install -y InnoSetup
124   - set PATH="C:\Program Files (x86)\Inno Setup 5";%PATH%
125
126   # Help debug some handle issues on AppVeyor
127   - ps: Invoke-WebRequest -Uri https://download.sysinternals.com/files/Handle.zip -OutFile handle.zip
128   - mkdir handle
129   - ps: Expand-Archive handle.zip -dest handle
130   - set PATH=%PATH%;%CD%\handle
131   - handle.exe -accepteula -help
132
133 test_script:
134   - git submodule update --init
135   - set SRC=.
136   - set NO_CCACHE=1
137   - sh src/ci/run.sh
138
139 cache:
140   - "build/i686-pc-windows-gnu/llvm -> src/rustllvm/llvm-auto-clean-trigger"
141   - "build/x86_64-pc-windows-gnu/llvm -> src/rustllvm/llvm-auto-clean-trigger"
142   - "build/i686-pc-windows-msvc/llvm -> src/rustllvm/llvm-auto-clean-trigger"
143   - "build/x86_64-pc-windows-msvc/llvm -> src/rustllvm/llvm-auto-clean-trigger"
144   - "i686-pc-windows-gnu/llvm -> src/rustllvm/llvm-auto-clean-trigger"
145   - "x86_64-pc-windows-gnu/llvm -> src/rustllvm/llvm-auto-clean-trigger"
146   - "i686-pc-windows-msvc/llvm -> src/rustllvm/llvm-auto-clean-trigger"
147   - "x86_64-pc-windows-msvc/llvm -> src/rustllvm/llvm-auto-clean-trigger"
148
149 branches:
150   only:
151     - auto
152
153 before_deploy:
154   - ps: |
155         New-Item -Path deploy -ItemType directory
156         Remove-Item -Recurse -Force build\dist\doc
157         Get-ChildItem -Path build\dist | Move-Item -Destination deploy
158         Get-ChildItem -Path deploy | Foreach-Object {
159           Push-AppveyorArtifact $_.FullName -FileName ${env:APPVEYOR_REPO_COMMIT}/$_
160         }
161
162 deploy:
163   - provider: S3
164     skip_cleanup: true
165     access_key_id: AKIAIPQVNYF2T3DTYIWQ
166     secret_access_key:
167       secure: +11jsUNFTQ9dq5Ad1i2+PeUJaXluFJ0zIJAXESE1dFT3Kdjku4/eDdgyjgsB6GnV
168     bucket: rust-lang-ci
169     set_public: true
170     region: us-east-1
171     artifact: /.*/
172     folder: rustc-builds
173     on:
174       branch: auto
175       DEPLOY: 1
176
177   # This provider is the same as the one above except that it has a slightly
178   # different upload directory and a slightly different trigger
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-alt
189     on:
190       branch: auto
191       DEPLOY_ALT: 1
192
193 # init:
194 #   - ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
195 # on_finish:
196 #   - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))