]> git.lizzy.rs Git - rust.git/blob - appveyor.yml
Rollup merge of #39111 - alexcrichton:more-cross-targets, r=brson
[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
9   - MSYS_BITS: 64
10     RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc
11     SCRIPT: python x.py test && python x.py dist
12     DEPLOY: 1
13   - MSYS_BITS: 32
14     RUST_CONFIGURE_ARGS: --build=i686-pc-windows-msvc
15     SCRIPT: python x.py test && python x.py dist
16     DEPLOY: 1
17
18   # MSVC makefiles
19   - MSYS_BITS: 64
20     RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc --disable-rustbuild
21     RUST_CHECK_TARGET: check
22
23   # MSVC cargotest
24   - MSYS_BITS: 64
25     NO_VENDOR: 1
26     RUST_CHECK_TARGET: check-aux
27     RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-msvc
28
29   # 32/64-bit MinGW builds.
30   #
31   # The MinGW builds unfortunately have to both download a custom toolchain and
32   # avoid the one installed by AppVeyor by default. Interestingly, though, for
33   # different reasons!
34   #
35   # For 32-bit the installed gcc toolchain on AppVeyor uses the pthread
36   # threading model. This is unfortunately not what we want, and if we compile
37   # with it then there's lots of link errors in the standard library (undefined
38   # references to pthread symbols).
39   #
40   # For 64-bit the installed gcc toolchain is currently 5.3.0 which
41   # unfortunately segfaults on Windows with --enable-llvm-assertions (segfaults
42   # in LLVM). See rust-lang/rust#28445 for more information, but to work around
43   # this we go back in time to 4.9.2 specifically.
44   #
45   # Finally, note that the downloads below are all in the `rust-lang-ci` S3
46   # bucket, but they cleraly didn't originate there! The downloads originally
47   # came from the mingw-w64 SourceForge download site. Unfortunately
48   # SourceForge is notoriously flaky, so we mirror it on our own infrastructure.
49   #
50   # And as a final point of note, the 32-bit MinGW build using the makefiles do
51   # *not* use debug assertions and llvm assertions. This is because they take
52   # too long on appveyor and this is tested by rustbuild below.
53   - MSYS_BITS: 32
54     RUST_CONFIGURE_ARGS: --build=i686-pc-windows-gnu
55     SCRIPT: python x.py test && python x.py dist
56     MINGW_URL: https://s3.amazonaws.com/rust-lang-ci
57     MINGW_ARCHIVE: i686-4.9.2-release-win32-dwarf-rt_v4-rev4.7z
58     MINGW_DIR: mingw32
59     DEPLOY: 1
60
61   - MSYS_BITS: 32
62     RUST_CONFIGURE_ARGS: --build=i686-pc-windows-gnu --disable-rustbuild
63     RUST_CHECK_TARGET: check
64     MINGW_URL: https://s3.amazonaws.com/rust-lang-ci
65     MINGW_ARCHIVE: i686-4.9.2-release-win32-dwarf-rt_v4-rev4.7z
66     MINGW_DIR: mingw32
67
68   - MSYS_BITS: 64
69     SCRIPT: python x.py test && python x.py dist
70     RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-gnu
71     MINGW_URL: https://s3.amazonaws.com/rust-lang-ci
72     MINGW_ARCHIVE: x86_64-4.9.2-release-win32-seh-rt_v4-rev4.7z
73     MINGW_DIR: mingw64
74     DEPLOY: 1
75
76 clone_depth: 1
77 build: false
78
79 install:
80   # If we need to download a custom MinGW, do so here and set the path
81   # appropriately.
82   #
83   # Note that this *also* means that we're not using what is typically
84   # /mingw32/bin/python2.7.exe, which is a "correct" python interpreter where
85   # /usr/bin/python2.7.exe is not. To ensure we use the right interpreter we
86   # move `C:\Python27` ahead in PATH and then also make sure the `python2.7.exe`
87   # file exists in there (which it doesn't by default).
88   - if defined MINGW_URL appveyor DownloadFile %MINGW_URL%/%MINGW_ARCHIVE%
89   - if defined MINGW_URL 7z x -y %MINGW_ARCHIVE% > nul
90   - if defined MINGW_URL set PATH=C:\Python27;%CD%\%MINGW_DIR%\bin;C:\msys64\usr\bin;%PATH%
91   - if defined MINGW_URL copy C:\Python27\python.exe C:\Python27\python2.7.exe
92
93   # Otherwise pull in the MinGW installed on appveyor
94   - if NOT defined MINGW_URL set PATH=C:\msys64\mingw%MSYS_BITS%\bin;C:\msys64\usr\bin;%PATH%
95
96   # Download and install sccache
97   - appveyor DownloadFile https://api.pub.build.mozilla.org/tooltool/sha512/%SCCACHE_DIGEST%
98   - mv %SCCACHE_DIGEST% sccache.tar.bz2
99   - 7z x -y sccache.tar.bz2 > nul
100   - 7z x -y sccache.tar > nul
101   - set PATH=%PATH%;%CD%\sccache2
102
103   # Help debug some handle issues on AppVeyor
104   - ps: Invoke-WebRequest -Uri https://download.sysinternals.com/files/Handle.zip -OutFile handle.zip
105   - mkdir handle
106   - ps: Expand-Archive handle.zip -dest handle
107   - set PATH=%PATH%;%CD%\handle
108   - handle.exe -accepteula -help
109
110 test_script:
111   - git submodule update --init
112   - set SRC=.
113   - set NO_CCACHE=1
114   - sh src/ci/run.sh
115
116 cache:
117   - "build/i686-pc-windows-gnu/llvm -> src/rustllvm/llvm-auto-clean-trigger"
118   - "build/x86_64-pc-windows-gnu/llvm -> src/rustllvm/llvm-auto-clean-trigger"
119   - "build/i686-pc-windows-msvc/llvm -> src/rustllvm/llvm-auto-clean-trigger"
120   - "build/x86_64-pc-windows-msvc/llvm -> src/rustllvm/llvm-auto-clean-trigger"
121   - "i686-pc-windows-gnu/llvm -> src/rustllvm/llvm-auto-clean-trigger"
122   - "x86_64-pc-windows-gnu/llvm -> src/rustllvm/llvm-auto-clean-trigger"
123   - "i686-pc-windows-msvc/llvm -> src/rustllvm/llvm-auto-clean-trigger"
124   - "x86_64-pc-windows-msvc/llvm -> src/rustllvm/llvm-auto-clean-trigger"
125
126 branches:
127   only:
128     - auto
129
130 before_deploy:
131   - ps: |
132         New-Item -Path deploy -ItemType directory
133         Get-ChildItem -Path build\dist -Filter '*.tar.gz' | Move-Item -Destination deploy
134         Get-FileHash .\deploy\* | ForEach-Object {
135           [io.file]::WriteAllText($_.Path + ".sha256", $_.Hash.ToLower() + "`n")
136         }
137         Get-ChildItem -Path deploy | Foreach-Object {
138           Push-AppveyorArtifact $_.FullName -FileName ${env:APPVEYOR_REPO_COMMIT}/$_
139         }
140
141 deploy:
142   - provider: S3
143     skip_cleanup: true
144     access_key_id: AKIAIPQVNYF2T3DTYIWQ
145     secret_access_key:
146       secure: +11jsUNFTQ9dq5Ad1i2+PeUJaXluFJ0zIJAXESE1dFT3Kdjku4/eDdgyjgsB6GnV
147     bucket: rust-lang-ci
148     set_public: true
149     region: us-east-1
150     artifact: /.*\.(tar.gz|sha256)/
151     folder: rustc-builds
152     on:
153       branch: auto
154       DEPLOY: 1
155
156 # init:
157 #   - ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
158 # on_finish:
159 #   - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))