From 6e1c626f7e4ab5213f692b666acedd3aa2d78339 Mon Sep 17 00:00:00 2001 From: Anthony Scemama Date: Mon, 25 Jan 2021 10:24:49 +0100 Subject: [PATCH] Fixed travis scripts --- travis/compilation.sh | 2 +- travis/configuration.sh | 2 +- travis/testing.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/travis/compilation.sh b/travis/compilation.sh index 1aa26dda..071b4872 100755 --- a/travis/compilation.sh +++ b/travis/compilation.sh @@ -8,7 +8,7 @@ tar -zxf $HOME/cache/config.tgz # Configure QP2 cd qp2 source ./quantum_package.rc -ninja -j 1 -v +ninja -j 1 -v || exit -1 # Create cache cd .. diff --git a/travis/configuration.sh b/travis/configuration.sh index fa52e793..7b3f5423 100755 --- a/travis/configuration.sh +++ b/travis/configuration.sh @@ -2,7 +2,7 @@ # Stage 1 # Configure QP2 -./configure --install all --config ./config/travis.cfg +./configure --install all --config ./config/travis.cfg || exit -1 # Create cache cd ../ diff --git a/travis/testing.sh b/travis/testing.sh index b2122f5c..f67bd106 100755 --- a/travis/testing.sh +++ b/travis/testing.sh @@ -8,7 +8,7 @@ tar -zxf $HOME/cache/compil.tgz # Configure QP2 cd qp2 source ./quantum_package.rc -qp_test -a && rm $HOME/cache/compil.tgz +exec qp_test -a && rm $HOME/cache/compil.tgz