]> git.lizzy.rs Git - rust.git/blob - .travis.yml
Rollup merge of #58182 - jethrogb:jb/sgx-bytebuffer-len-0, r=joshtriplett
[rust.git] / .travis.yml
1 language: shell
2 sudo: required
3 dist: xenial
4 services:
5   - docker
6 addons:
7   apt:
8     packages:
9       - gdb
10
11 git:
12   depth: 2
13   submodules: false
14
15 matrix:
16   fast_finish: true
17   include:
18     # Images used in testing PR and try-build should be run first.
19     - env: IMAGE=x86_64-gnu-llvm-6.0 RUST_BACKTRACE=1
20       if: type = pull_request OR branch = auto
21
22     - env: IMAGE=dist-x86_64-linux DEPLOY=1
23       if: branch = try OR branch = auto
24
25     # "alternate" deployments, these are "nightlies" but have LLVM assertions
26     # turned on, they're deployed to a different location primarily for
27     # additional testing.
28     - env: IMAGE=dist-x86_64-linux DEPLOY_ALT=1 CI_JOB_NAME=dist-x86_64-linux-alt
29       if: branch = try OR branch = auto
30
31     - env: >
32         RUST_CHECK_TARGET=dist
33         RUST_CONFIGURE_ARGS="--enable-extended --enable-profiler --enable-lldb --set rust.jemalloc"
34         SRC=.
35         DEPLOY_ALT=1
36         RUSTC_RETRY_LINKER_ON_SEGFAULT=1
37         MACOSX_DEPLOYMENT_TARGET=10.7
38         NO_LLVM_ASSERTIONS=1
39         NO_DEBUG_ASSERTIONS=1
40         CI_JOB_NAME=dist-x86_64-apple-alt
41       os: osx
42       osx_image: xcode9.3-moar
43       if: branch = auto
44
45     # macOS builders. These are placed near the beginning because they are very
46     # slow to run.
47
48     # OSX builders running tests, these run the full test suite.
49     # NO_DEBUG_ASSERTIONS=1 to make them go faster, but also do have some
50     # runners that run `//ignore-debug` tests.
51     #
52     # Note that the compiler is compiled to target 10.8 here because the Xcode
53     # version that we're using, 8.2, cannot compile LLVM for OSX 10.7.
54     - env: >
55         RUST_CHECK_TARGET=check
56         RUST_CONFIGURE_ARGS="--build=x86_64-apple-darwin --enable-sanitizers --enable-profiler --set rust.jemalloc"
57         SRC=.
58         RUSTC_RETRY_LINKER_ON_SEGFAULT=1
59         MACOSX_DEPLOYMENT_TARGET=10.8
60         MACOSX_STD_DEPLOYMENT_TARGET=10.7
61         NO_LLVM_ASSERTIONS=1
62         NO_DEBUG_ASSERTIONS=1
63         CI_JOB_NAME=x86_64-apple
64       os: osx
65       osx_image: xcode9.3-moar
66       if: branch = auto
67
68     - env: >
69         RUST_CHECK_TARGET=check
70         RUST_CONFIGURE_ARGS="--build=i686-apple-darwin --set rust.jemalloc"
71         SRC=.
72         RUSTC_RETRY_LINKER_ON_SEGFAULT=1
73         MACOSX_DEPLOYMENT_TARGET=10.8
74         MACOSX_STD_DEPLOYMENT_TARGET=10.7
75         NO_LLVM_ASSERTIONS=1
76         NO_DEBUG_ASSERTIONS=1
77         CI_JOB_NAME=i686-apple
78       os: osx
79       osx_image: xcode9.3-moar
80       if: branch = auto
81
82     # OSX builders producing releases. These do not run the full test suite and
83     # just produce a bunch of artifacts.
84     #
85     # Note that these are running in the `xcode7` image instead of the
86     # `xcode8.2` image as above. That's because we want to build releases for
87     # OSX 10.7 and `xcode7` is the latest Xcode able to compile LLVM for 10.7.
88     - env: >
89         RUST_CHECK_TARGET=dist
90         RUST_CONFIGURE_ARGS="--build=i686-apple-darwin --enable-full-tools --enable-profiler --enable-lldb --set rust.jemalloc"
91         SRC=.
92         DEPLOY=1
93         RUSTC_RETRY_LINKER_ON_SEGFAULT=1
94         MACOSX_DEPLOYMENT_TARGET=10.7
95         NO_LLVM_ASSERTIONS=1
96         NO_DEBUG_ASSERTIONS=1
97         DIST_REQUIRE_ALL_TOOLS=1
98         CI_JOB_NAME=dist-i686-apple
99       os: osx
100       osx_image: xcode9.3-moar
101       if: branch = auto
102
103     - env: >
104         RUST_CHECK_TARGET=dist
105         RUST_CONFIGURE_ARGS="--target=aarch64-apple-ios,armv7-apple-ios,armv7s-apple-ios,i386-apple-ios,x86_64-apple-ios --enable-full-tools --enable-sanitizers --enable-profiler --enable-lldb --set rust.jemalloc"
106         SRC=.
107         DEPLOY=1
108         RUSTC_RETRY_LINKER_ON_SEGFAULT=1
109         MACOSX_DEPLOYMENT_TARGET=10.7
110         NO_LLVM_ASSERTIONS=1
111         NO_DEBUG_ASSERTIONS=1
112         DIST_REQUIRE_ALL_TOOLS=1
113         CI_JOB_NAME=dist-x86_64-apple
114       os: osx
115       osx_image: xcode9.3-moar
116       if: branch = auto
117
118     # Linux builders, remaining docker images
119     - env: IMAGE=arm-android
120       if: branch = auto
121     - env: IMAGE=armhf-gnu
122       if: branch = auto
123     - env: IMAGE=dist-various-1 DEPLOY=1
124       if: branch = auto
125     - env: IMAGE=dist-various-2 DEPLOY=1
126       if: branch = auto
127     - env: IMAGE=dist-aarch64-linux DEPLOY=1
128       if: branch = auto
129     - env: IMAGE=dist-android DEPLOY=1
130       if: branch = auto
131     - env: IMAGE=dist-arm-linux DEPLOY=1
132       if: branch = auto
133     - env: IMAGE=dist-armhf-linux DEPLOY=1
134       if: branch = auto
135     - env: IMAGE=dist-armv7-linux DEPLOY=1
136       if: branch = auto
137     - env: IMAGE=dist-i586-gnu-i586-i686-musl DEPLOY=1
138       if: branch = auto
139     - env: IMAGE=dist-i686-freebsd DEPLOY=1
140       if: branch = auto
141     - env: IMAGE=dist-i686-linux DEPLOY=1
142       if: branch = auto
143     - env: IMAGE=dist-mips-linux DEPLOY=1
144       if: branch = auto
145     - env: IMAGE=dist-mips64-linux DEPLOY=1
146       if: branch = auto
147     - env: IMAGE=dist-mips64el-linux DEPLOY=1
148       if: branch = auto
149     - env: IMAGE=dist-mipsel-linux DEPLOY=1
150       if: branch = auto
151     - env: IMAGE=dist-powerpc-linux DEPLOY=1
152       if: branch = auto
153     - env: IMAGE=dist-powerpc64-linux DEPLOY=1
154       if: branch = auto
155     - env: IMAGE=dist-powerpc64le-linux DEPLOY=1
156       if: branch = auto
157     - env: IMAGE=dist-s390x-linux DEPLOY=1
158       if: branch = auto
159     - env: IMAGE=dist-x86_64-freebsd DEPLOY=1
160       if: branch = auto
161     - env: IMAGE=dist-x86_64-musl DEPLOY=1
162       if: branch = auto
163     - env: IMAGE=dist-x86_64-netbsd DEPLOY=1
164       if: branch = auto
165     - env: IMAGE=asmjs
166       if: branch = auto
167     - env: IMAGE=i686-gnu
168       if: branch = auto
169     - env: IMAGE=i686-gnu-nopt
170       if: branch = auto
171     - env: IMAGE=test-various
172       if: branch = auto
173     - env: IMAGE=x86_64-gnu
174       if: branch = auto
175     - env: IMAGE=x86_64-gnu-full-bootstrap
176       if: branch = auto
177     - env: IMAGE=x86_64-gnu-aux
178       if: branch = auto
179     - env: IMAGE=x86_64-gnu-tools
180       if: branch = auto OR (type = pull_request AND commit_message =~ /(?i:^update.*\b(rls|rustfmt|clippy|miri|cargo)\b)/)
181     - env: IMAGE=x86_64-gnu-debug
182       if: branch = auto
183     - env: IMAGE=x86_64-gnu-nopt
184       if: branch = auto
185     - env: IMAGE=x86_64-gnu-distcheck
186       if: branch = auto
187     - env: IMAGE=mingw-check
188       if: type = pull_request OR branch = auto
189
190     - stage: publish toolstate
191       if: branch = master AND type = push
192       before_install: []
193       install: []
194       sudo: false
195       script:
196         MESSAGE_FILE=$(mktemp -t msg.XXXXXX);
197         . src/ci/docker/x86_64-gnu-tools/repo.sh;
198         commit_toolstate_change "$MESSAGE_FILE" "$TRAVIS_BUILD_DIR/src/tools/publish_toolstate.py" "$(git rev-parse HEAD)" "$(git log --format=%s -n1 HEAD)" "$MESSAGE_FILE" "$TOOLSTATE_REPO_ACCESS_TOKEN";
199
200 before_install:
201   # We'll use the AWS cli to download/upload cached docker layers as well as
202   # push our deployments, so download that here.
203   - pip install --user awscli; export PATH=$PATH:$HOME/.local/bin:$HOME/Library/Python/2.7/bin/
204   - mkdir -p $HOME/rustsrc
205   # FIXME(#46924): these two commands are required to enable IPv6,
206   # they shouldn't exist, please revert once more official solutions appeared.
207   # see https://github.com/travis-ci/travis-ci/issues/8891#issuecomment-353403729
208   - if [ "$TRAVIS_OS_NAME" = linux ]; then
209       echo '{"ipv6":true,"fixed-cidr-v6":"fd9a:8454:6789:13f7::/64"}' | sudo tee /etc/docker/daemon.json;
210       sudo service docker restart;
211     fi
212
213 install:
214   - case "$TRAVIS_OS_NAME" in
215         linux)
216           travis_retry curl -fo $HOME/stamp https://s3-us-west-1.amazonaws.com/rust-lang-ci2/rust-ci-mirror/2017-03-17-stamp-x86_64-unknown-linux-musl &&
217             chmod +x $HOME/stamp &&
218             export PATH=$PATH:$HOME
219           ;;
220         osx)
221           if [[ "$RUST_CHECK_TARGET" == dist ]]; then
222             travis_retry brew update &&
223             travis_retry brew install xz &&
224             travis_retry brew install swig;
225           fi &&
226           travis_retry curl -fo /usr/local/bin/sccache https://s3-us-west-1.amazonaws.com/rust-lang-ci2/rust-ci-mirror/2018-04-02-sccache-x86_64-apple-darwin &&
227             chmod +x /usr/local/bin/sccache &&
228           travis_retry curl -fo /usr/local/bin/stamp https://s3-us-west-1.amazonaws.com/rust-lang-ci2/rust-ci-mirror/2017-03-17-stamp-x86_64-apple-darwin &&
229             chmod +x /usr/local/bin/stamp &&
230           travis_retry curl -f http://releases.llvm.org/7.0.0/clang+llvm-7.0.0-x86_64-apple-darwin.tar.xz | tar xJf - &&
231             export CC=`pwd`/clang+llvm-7.0.0-x86_64-apple-darwin/bin/clang &&
232             export CXX=`pwd`/clang+llvm-7.0.0-x86_64-apple-darwin/bin/clang++ &&
233             export AR=ar
234           ;;
235     esac
236
237 before_script:
238   - >
239       echo "#### Disk usage before running script:";
240       df -h;
241       du . | sort -nr | head -n100
242   - >
243       RUN_SCRIPT="src/ci/init_repo.sh . $HOME/rustsrc";
244       if [ "$TRAVIS_OS_NAME" = "osx" ]; then
245           export RUN_SCRIPT="$RUN_SCRIPT && src/ci/run.sh";
246       else
247           export RUN_SCRIPT="$RUN_SCRIPT && src/ci/docker/run.sh $IMAGE";
248           # Enable core dump on Linux.
249           sudo sh -c 'echo "/checkout/obj/cores/core.%p.%E" > /proc/sys/kernel/core_pattern';
250       fi
251   - >
252       if [ "$IMAGE" = mingw-check ]; then
253         # verify the publish_toolstate script works.
254         git clone --depth=1 https://github.com/rust-lang-nursery/rust-toolstate.git;
255         cd rust-toolstate;
256         python2.7 "$TRAVIS_BUILD_DIR/src/tools/publish_toolstate.py" "$(git rev-parse HEAD)" "$(git log --format=%s -n1 HEAD)" "" "";
257         cd ..;
258         rm -rf rust-toolstate;
259       fi
260
261 # Log time information from this machine and an external machine for insight into possible
262 # clock drift. Timezones don't matter since relative deltas give all the necessary info.
263 script:
264   - >
265       date && (curl -fs --head https://google.com | grep ^Date: | sed 's/Date: //g' || true)
266   - stamp sh -x -c "$RUN_SCRIPT"
267   - >
268       date && (curl -fs --head https://google.com | grep ^Date: | sed 's/Date: //g' || true)
269
270 after_success:
271   - >
272       echo "#### Build successful; Disk usage after running script:";
273       df -h;
274       du . | sort -nr | head -n100
275   - >
276       if [ "$DEPLOY$DEPLOY_ALT" == "1" ]; then
277         mkdir -p deploy/$TRAVIS_COMMIT;
278         if [ "$TRAVIS_OS_NAME" == "osx" ]; then
279             rm -rf build/dist/doc &&
280             cp -r build/dist/* deploy/$TRAVIS_COMMIT;
281         else
282             rm -rf obj/build/dist/doc &&
283             cp -r obj/build/dist/* deploy/$TRAVIS_COMMIT;
284         fi;
285         ls -la deploy/$TRAVIS_COMMIT;
286         deploy_dir=rustc-builds;
287         if [ "$DEPLOY_ALT" == "1" ]; then
288             deploy_dir=rustc-builds-alt;
289         fi;
290         travis_retry aws s3 cp --no-progress --recursive --acl public-read ./deploy s3://rust-lang-ci2/$deploy_dir
291       fi
292
293 after_failure:
294   - >
295       echo "#### Build failed; Disk usage after running script:";
296       df -h;
297       du . | sort -nr | head -n100
298
299   # Random attempt at debugging currently. Just poking around in here to see if
300   # anything shows up.
301
302   # Dump backtrace for macOS
303   - ls -lat $HOME/Library/Logs/DiagnosticReports/
304   - find $HOME/Library/Logs/DiagnosticReports
305       -type f
306       -name '*.crash'
307       -not -name '*.stage2-*.crash'
308       -not -name 'com.apple.CoreSimulator.CoreSimulatorService-*.crash'
309       -exec printf travis_fold":start:crashlog\n\033[31;1m%s\033[0m\n" {} \;
310       -exec head -750 {} \;
311       -exec echo travis_fold":"end:crashlog \; || true
312
313   # Dump backtrace for Linux
314   - ln -s . checkout &&
315     for CORE in obj/cores/core.*; do
316       EXE=$(echo $CORE | sed 's|obj/cores/core\.[0-9]*\.!checkout!\(.*\)|\1|;y|!|/|');
317       if [ -f "$EXE" ]; then
318         printf travis_fold":start:crashlog\n\033[31;1m%s\033[0m\n" "$CORE";
319         gdb --batch -q -c "$CORE" "$EXE"
320           -iex 'set auto-load off'
321           -iex 'dir src/'
322           -iex 'set sysroot .'
323           -ex bt
324           -ex q;
325         echo travis_fold":"end:crashlog;
326       fi;
327     done || true
328
329   # see #50887
330   - cat ./obj/build/x86_64-unknown-linux-gnu/native/asan/build/lib/asan/clang_rt.asan-dynamic-i386.vers || true
331
332   # attempt to debug anything killed by the oom killer on linux, just to see if
333   # it happened
334   - dmesg | grep -i kill
335
336 notifications:
337   email: false