Skip to content

Commit 62a7258

Browse files
committed
Auto merge of #39320 - alexcrichton:less-backtraces, r=aturon
travis: Turn off core dumps on OSX I've seen these take up quite a bit of log space and I have the sneaking suspicion that they're just making our test suite take longer (sometimes timing out on 32-bit OSX now). In any case the backtraces haven't proven too useful, unfortunately.
2 parents 463affe + 7095a48 commit 62a7258

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

.travis.yml

-14
Original file line numberDiff line numberDiff line change
@@ -43,17 +43,9 @@ matrix:
4343
SRC=.
4444
os: osx
4545
osx_image: xcode8.2
46-
before_script: &osx_before_script >
47-
ulimit -c unlimited
4846
install: &osx_install_sccache >
4947
curl -L https://api.pub.build.mozilla.org/tooltool/sha512/d0025b286468cc5ada83b23d3fafbc936b9f190eaa7d4a981715b18e8e3bf720a7bcee7bfe758cfdeb8268857f6098fd52dcdd8818232692a30ce91039936596 |
5048
tar xJf - -C /usr/local/bin --strip-components=1
51-
after_failure: &osx_after_failure >
52-
echo 'bt all' > cmds;
53-
for file in $(ls /cores); do
54-
echo core file $file;
55-
lldb -c /cores/$file `which ld` -b -s cmds;
56-
done
5749
5850
- env: >
5951
SCRIPT="./x.py test && ./x.py dist"
@@ -62,28 +54,22 @@ matrix:
6254
DEPLOY=1
6355
os: osx
6456
osx_image: xcode8.2
65-
before_script: *osx_before_script
6657
install: *osx_install_sccache
67-
after_failure: *osx_after_failure
6858
- env: >
6959
RUST_CHECK_TARGET=check
7060
RUST_CONFIGURE_ARGS=--build=x86_64-apple-darwin --disable-rustbuild
7161
SRC=.
7262
os: osx
7363
osx_image: xcode8.2
74-
before_script: *osx_before_script
7564
install: *osx_install_sccache
76-
after_failure: *osx_after_failure
7765
- env: >
7866
RUST_CHECK_TARGET=dist
7967
RUST_CONFIGURE_ARGS="--target=aarch64-apple-ios,armv7-apple-ios,armv7s-apple-ios,i386-apple-ios,x86_64-apple-ios --enable-extended"
8068
SRC=.
8169
DEPLOY=1
8270
os: osx
8371
osx_image: xcode8.2
84-
before_script: *osx_before_script
8572
install: *osx_install_sccache
86-
after_failure: *osx_after_failure
8773
8874
env:
8975
global:

0 commit comments

Comments
 (0)