Skip to content

Remove the core dump support #2183

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Apr 16, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,8 @@ install:
- ./tool/install_travis.sh

before_script:
- ulimit -c unlimited -S
- pub get

after_failure:
- ./tool/after_failure_travis.sh

before_install:
# Disable non-blocking I/O for stdout, stderr https://github.com/travis-ci/travis-ci/issues/4704#issuecomment-348435959
- python -c 'import os,sys,fcntl; flags = fcntl.fcntl(sys.stdout, fcntl.F_GETFL); fcntl.fcntl(sys.stdout, fcntl.F_SETFL, flags&~os.O_NONBLOCK);'
Expand Down
2 changes: 1 addition & 1 deletion test/model_special_cases_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ void main() {
List<Category> packageCategories =
packageGraphSmall.localPackages.first.categories;
expect(packageCategories.length, equals(0));
});
}, timeout: Timeout.factor(2));
});

group('Package', () {
Expand Down
29 changes: 0 additions & 29 deletions tool/after_failure_travis.sh

This file was deleted.

2 changes: 0 additions & 2 deletions tool/install_travis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@
set -x

if uname | grep -q Linux ; then
sudo apt-get update
sudo apt-get install -y gdb
sudo gem install coveralls-lcov
coveralls-lcov --help
fi
Expand Down