Skip to content

Commit 7013dfe

Browse files
committed
Don't background install.sh on Travis-CI
1 parent 192ef08 commit 7013dfe

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed

.travis.yml

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -151,13 +151,7 @@ script:
151151
ln -fs "$(which gcc-5)" "$HOME/bin/gcc"
152152
ln -fs "$(which g++-5)" "$HOME/bin/g++"
153153
export PATH="$PATH:$HOME/bin"
154-
yes | ./install.sh -i "$HOME/opt/opencoarrays" -j 4 -f "$HOME/bin/gfortran" -c "$HOME/bin/gcc" -C "$HOME/bin/g++" > install.log &
155-
install_sh_PID=$!
156-
echo "install.log will be displayed after success or failure"
157-
while ps -p $install_sh_PID > /dev/null; do
158-
echo "Still working on installing opencoarrays and dependencies"
159-
sleep 300 # prevent Travis-CI abort due to inactivity and excessive logging
160-
done
154+
yes | ./install.sh -i "$HOME/opt/opencoarrays" -j 4 -f "$HOME/bin/gfortran" -c "$HOME/bin/gcc" -C "$HOME/bin/g++"
161155
else
162156
mkdir cmake-build
163157
cd cmake-build
@@ -172,10 +166,6 @@ after_success:
172166
- find . -name '*.gcno' -print
173167
- gcov-5 --version
174168
- bash <(curl -s https://codecov.io/bash) -x $(which gcov-5)
175-
- cat install.log || true
176-
177-
after_failure:
178-
- cat install.log || true
179169

180170
notifications:
181171
webhooks:

0 commit comments

Comments
 (0)