diff options
Diffstat (limited to 'travis-ci/managers/debian.sh')
-rwxr-xr-x | travis-ci/managers/debian.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/travis-ci/managers/debian.sh b/travis-ci/managers/debian.sh index 976e926c82..af2f0dab08 100755 --- a/travis-ci/managers/debian.sh +++ b/travis-ci/managers/debian.sh @@ -39,6 +39,9 @@ for phase in "${PHASES[@]}"; do $DOCKER_EXEC apt-get -y update $DOCKER_EXEC apt-get -y build-dep systemd $DOCKER_EXEC apt-get -y install "${ADDITIONAL_DEPS[@]}" + # overlayfs on TravisCI is having trouble delivering inotify events to test-path and test-event. + # Let's use tmpfs instead for now. + $DOCKER_EXEC mount -t tmpfs tmpfs /tmp ;; RUN) info "Run phase" |