Skip to content

Commit

Permalink
(travis) Work around recent output capture bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
ribasushi committed Jan 28, 2018
1 parent ca386f5 commit 862f7a5
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions maint/travis-ci_scripts/common.bash
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
# "autodie"
set -e

# FIXME: Work around travis IO capture bugs
# https://github.com/travis-ci/travis-ci/issues/8973
# https://github.com/travis-ci/travis-ci/issues/8920
perl -MFcntl -e 'fcntl( $_, F_SETFL, 0 ) for \*STDOUT, \*STDERR'

TEST_STDERR_LOG=/tmp/dbictest.stderr
TIMEOUT_CMD="/usr/bin/timeout --kill-after=16m --signal=TERM 15m"

Expand Down

1 comment on commit 862f7a5

@ribasushi
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@haarg this might be of interest for travis-perl-helpers ( and associated tikets )

Please sign in to comment.