]> git.lizzy.rs Git - rust.git/blob - appveyor.yml
Add resize() method to IndexVec.
[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-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-03-16-sccache-x86_64-pc-windows-msvc
119   - mv 2017-03-16-sccache-x86_64-pc-windows-msvc sccache
120   - set PATH=%PATH%;%CD%
121
122   # Install InnoSetup to get `iscc` used to produce installers
123   - appveyor-retry 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   # Attempt to debug sccache failures
134   - set SCCACHE_ERROR_LOG=%CD%/sccache.log
135
136 test_script:
137   - appveyor-retry sh -c 'git submodule deinit -f . && git submodule update --init'
138   - set SRC=.
139   - set NO_CCACHE=1
140   - sh src/ci/run.sh
141
142 on_failure:
143   - cat %CD%/sccache.log
144
145 cache:
146   - "build/i686-pc-windows-msvc/llvm -> src/rustllvm/llvm-rebuild-trigger"
147   - "build/x86_64-pc-windows-msvc/llvm -> src/rustllvm/llvm-rebuild-trigger"
148   - "i686-pc-windows-msvc/llvm -> src/rustllvm/llvm-rebuild-trigger"
149   - "x86_64-pc-windows-msvc/llvm -> src/rustllvm/llvm-rebuild-trigger"
150
151 branches:
152   only:
153     - auto
154
155 before_deploy:
156   - ps: |
157         New-Item -Path deploy -ItemType directory
158         Remove-Item -Recurse -Force build\dist\doc
159         Get-ChildItem -Path build\dist | Move-Item -Destination deploy
160         Get-ChildItem -Path deploy | Foreach-Object {
161           Push-AppveyorArtifact $_.FullName -FileName ${env:APPVEYOR_REPO_COMMIT}/$_
162         }
163
164 deploy:
165   - provider: S3
166     skip_cleanup: true
167     access_key_id: AKIAIPQVNYF2T3DTYIWQ
168     secret_access_key:
169       secure: +11jsUNFTQ9dq5Ad1i2+PeUJaXluFJ0zIJAXESE1dFT3Kdjku4/eDdgyjgsB6GnV
170     bucket: rust-lang-ci
171     set_public: true
172     region: us-east-1
173     artifact: /.*/
174     folder: rustc-builds
175     on:
176       branch: auto
177       DEPLOY: 1
178
179   # This provider is the same as the one above except that it has a slightly
180   # different upload directory and a slightly different trigger
181   - provider: S3
182     skip_cleanup: true
183     access_key_id: AKIAIPQVNYF2T3DTYIWQ
184     secret_access_key:
185       secure: +11jsUNFTQ9dq5Ad1i2+PeUJaXluFJ0zIJAXESE1dFT3Kdjku4/eDdgyjgsB6GnV
186     bucket: rust-lang-ci
187     set_public: true
188     region: us-east-1
189     artifact: /.*/
190     folder: rustc-builds-alt
191     on:
192       branch: auto
193       DEPLOY_ALT: 1
194
195 # init:
196 #   - ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
197 # on_finish:
198 #   - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))