]> git.lizzy.rs Git - rust.git/blob - appveyor.yml
Auto merge of #39086 - aidanhs:aphs-local-rebuild-no-jemalloc, 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
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 --target=i586-pc-windows-msvc
15     SCRIPT: python x.py test --host i686-pc-windows-msvc --target i686-pc-windows-msvc && 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 matrix:
77   fast_finish: true
78
79 clone_depth: 1
80 build: false
81
82 install:
83   # If we need to download a custom MinGW, do so here and set the path
84   # appropriately.
85   #
86   # Note that this *also* means that we're not using what is typically
87   # /mingw32/bin/python2.7.exe, which is a "correct" python interpreter where
88   # /usr/bin/python2.7.exe is not. To ensure we use the right interpreter we
89   # move `C:\Python27` ahead in PATH and then also make sure the `python2.7.exe`
90   # file exists in there (which it doesn't by default).
91   - if defined MINGW_URL appveyor DownloadFile %MINGW_URL%/%MINGW_ARCHIVE%
92   - if defined MINGW_URL 7z x -y %MINGW_ARCHIVE% > nul
93   - if defined MINGW_URL set PATH=C:\Python27;%CD%\%MINGW_DIR%\bin;C:\msys64\usr\bin;%PATH%
94   - if defined MINGW_URL copy C:\Python27\python.exe C:\Python27\python2.7.exe
95
96   # Otherwise pull in the MinGW installed on appveyor
97   - if NOT defined MINGW_URL set PATH=C:\msys64\mingw%MSYS_BITS%\bin;C:\msys64\usr\bin;%PATH%
98
99   # Download and install sccache
100   - appveyor DownloadFile https://api.pub.build.mozilla.org/tooltool/sha512/%SCCACHE_DIGEST%
101   - mv %SCCACHE_DIGEST% sccache.tar.bz2
102   - 7z x -y sccache.tar.bz2 > nul
103   - 7z x -y sccache.tar > nul
104   - set PATH=%PATH%;%CD%\sccache2
105
106   # Help debug some handle issues on AppVeyor
107   - ps: Invoke-WebRequest -Uri https://download.sysinternals.com/files/Handle.zip -OutFile handle.zip
108   - mkdir handle
109   - ps: Expand-Archive handle.zip -dest handle
110   - set PATH=%PATH%;%CD%\handle
111   - handle.exe -accepteula -help
112
113 test_script:
114   - git submodule update --init
115   - set SRC=.
116   - set NO_CCACHE=1
117   - sh src/ci/run.sh
118
119 cache:
120   - "build/i686-pc-windows-gnu/llvm -> src/rustllvm/llvm-auto-clean-trigger"
121   - "build/x86_64-pc-windows-gnu/llvm -> src/rustllvm/llvm-auto-clean-trigger"
122   - "build/i686-pc-windows-msvc/llvm -> src/rustllvm/llvm-auto-clean-trigger"
123   - "build/x86_64-pc-windows-msvc/llvm -> src/rustllvm/llvm-auto-clean-trigger"
124   - "i686-pc-windows-gnu/llvm -> src/rustllvm/llvm-auto-clean-trigger"
125   - "x86_64-pc-windows-gnu/llvm -> src/rustllvm/llvm-auto-clean-trigger"
126   - "i686-pc-windows-msvc/llvm -> src/rustllvm/llvm-auto-clean-trigger"
127   - "x86_64-pc-windows-msvc/llvm -> src/rustllvm/llvm-auto-clean-trigger"
128
129 branches:
130   only:
131     - auto
132
133 before_deploy:
134   - ps: |
135         New-Item -Path deploy -ItemType directory
136         Get-ChildItem -Path build\dist -Filter '*.tar.gz' | Move-Item -Destination deploy
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/
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'))