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