]> git.lizzy.rs Git - rust.git/blob - appveyor.yml
Make codegen test for remap-path-prefix more thorough.
[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 --enable-ninja
36     SCRIPT: python x.py test
37     MINGW_URL: https://s3.amazonaws.com/rust-lang-ci/rust-ci-mirror
38     MINGW_ARCHIVE: i686-6.2.0-release-posix-dwarf-rt_v5-rev1.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 --enable-ninja
43     MINGW_URL: https://s3.amazonaws.com/rust-lang-ci/rust-ci-mirror
44     MINGW_ARCHIVE: x86_64-6.2.0-release-posix-seh-rt_v5-rev1.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 --enable-ninja
61     SCRIPT: python x.py dist
62     MINGW_URL: https://s3.amazonaws.com/rust-lang-ci/rust-ci-mirror
63     MINGW_ARCHIVE: i686-6.2.0-release-posix-dwarf-rt_v5-rev1.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 --enable-ninja
69     MINGW_URL: https://s3.amazonaws.com/rust-lang-ci/rust-ci-mirror
70     MINGW_ARCHIVE: x86_64-6.2.0-release-posix-seh-rt_v5-rev1.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   # Otherwise pull in the MinGW installed on appveyor
100   - if NOT defined MINGW_URL set PATH=C:\msys64\mingw%MSYS_BITS%\bin;C:\msys64\usr\bin;%PATH%
101
102   # Prefer the "native" Python as LLVM has trouble building with MSYS sometimes
103   - copy C:\Python27\python.exe C:\Python27\python2.7.exe
104   - set PATH=C:\Python27;%PATH%
105
106   # Download and install sccache
107   - appveyor-retry appveyor DownloadFile https://s3.amazonaws.com/rust-lang-ci/rust-ci-mirror/2017-04-04-sccache-x86_64-pc-windows-msvc
108   - mv 2017-04-04-sccache-x86_64-pc-windows-msvc sccache.exe
109   - set PATH=%PATH%;%CD%
110
111   # Download and install ninja
112   #
113   # Note that this is originally from the github releases patch of Ninja
114   - appveyor-retry appveyor DownloadFile https://s3.amazonaws.com/rust-lang-ci/rust-ci-mirror/2017-03-15-ninja-win.zip
115   - 7z x 2017-03-15-ninja-win.zip
116   # - set PATH=%PATH%;%CD% -- this already happens above for sccache
117
118   # Install InnoSetup to get `iscc` used to produce installers
119   - appveyor-retry choco install -y InnoSetup
120   - set PATH="C:\Program Files (x86)\Inno Setup 5";%PATH%
121
122   # Help debug some handle issues on AppVeyor
123   - ps: Invoke-WebRequest -Uri https://download.sysinternals.com/files/Handle.zip -OutFile handle.zip
124   - mkdir handle
125   - ps: Expand-Archive handle.zip -dest handle
126   - set PATH=%PATH%;%CD%\handle
127   - handle.exe -accepteula -help
128
129   # Attempt to debug sccache failures
130   - set SCCACHE_ERROR_LOG=%CD%/sccache.log
131
132 test_script:
133   - if not exist C:\cache\rustsrc\NUL mkdir C:\cache\rustsrc
134   - sh src/ci/init_repo.sh . /c/cache/rustsrc
135   - set SRC=.
136   - set NO_CCACHE=1
137   - sh src/ci/run.sh
138
139 on_failure:
140   - cat %CD%\sccache.log || exit 0
141
142 cache:
143   - "build/i686-pc-windows-msvc/llvm -> src/rustllvm/llvm-rebuild-trigger"
144   - "build/x86_64-pc-windows-msvc/llvm -> src/rustllvm/llvm-rebuild-trigger"
145   - "i686-pc-windows-msvc/llvm -> src/rustllvm/llvm-rebuild-trigger"
146   - "x86_64-pc-windows-msvc/llvm -> src/rustllvm/llvm-rebuild-trigger"
147
148 branches:
149   only:
150     - auto
151
152 before_deploy:
153   - ps: |
154         New-Item -Path deploy -ItemType directory
155         Remove-Item -Recurse -Force build\dist\doc
156         Get-ChildItem -Path build\dist | Move-Item -Destination deploy
157         Get-ChildItem -Path deploy | Foreach-Object {
158           Push-AppveyorArtifact $_.FullName -FileName ${env:APPVEYOR_REPO_COMMIT}/$_
159         }
160
161 deploy:
162   - provider: S3
163     skip_cleanup: true
164     access_key_id: AKIAIPQVNYF2T3DTYIWQ
165     secret_access_key:
166       secure: +11jsUNFTQ9dq5Ad1i2+PeUJaXluFJ0zIJAXESE1dFT3Kdjku4/eDdgyjgsB6GnV
167     bucket: rust-lang-ci
168     set_public: true
169     region: us-east-1
170     artifact: /.*/
171     folder: rustc-builds
172     on:
173       branch: auto
174       DEPLOY: 1
175     max_error_retry: 5
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     max_error_retry: 5
193
194 # init:
195 #   - ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
196 # on_finish:
197 #   - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))