summaryrefslogtreecommitdiff
path: root/tools/travis-ci/run.sh
diff options
context:
space:
mode:
authormayeut <mayeut@users.noreply.github.com>2015-10-08 20:06:59 +0200
committermayeut <mayeut@users.noreply.github.com>2015-10-08 20:06:59 +0200
commit1b2ebfc69a4be4dd72561e5be59f1c9063f8fbac (patch)
tree6dcc5bcfee55f990bf167c7d6393a118c4da9950 /tools/travis-ci/run.sh
parent3ea4486bedf15be988736e6f9cb5db088ea9017c (diff)
Add ABI tracker
Diffstat (limited to 'tools/travis-ci/run.sh')
-rwxr-xr-xtools/travis-ci/run.sh7
1 files changed, 5 insertions, 2 deletions
diff --git a/tools/travis-ci/run.sh b/tools/travis-ci/run.sh
index bec41d6d..323b30e1 100755
--- a/tools/travis-ci/run.sh
+++ b/tools/travis-ci/run.sh
@@ -7,6 +7,11 @@ set -o nounset ## set -u : exit the script if you try to use an uninitialised
set -o errexit ## set -e : exit the script if any statement returns a non-true return value
set -o pipefail ## Fail on error in pipe
+# ABI check is done by abi-check.sh
+if [ "${OPJ_CI_ABI_CHECK:-}" == "1" ]; then
+ exit 0
+fi
+
# Set-up some variables
if [ "${OPJ_CI_BUILD_CONFIGURATION:-}" == "" ]; then
export OPJ_CI_BUILD_CONFIGURATION=Release #default
@@ -207,8 +212,6 @@ New/unknown test failure found!!!
OPJ_CI_RESULT=1
fi
fi
-
-
fi
exit ${OPJ_CI_RESULT}