diff options
| author | Antonin Descampe <antonin@gmail.com> | 2016-09-29 21:44:38 +0200 |
|---|---|---|
| committer | Antonin Descampe <antonin@gmail.com> | 2016-09-29 21:44:38 +0200 |
| commit | 110d31891b459c673c7c788cf8170cadfd2201bf (patch) | |
| tree | 0ea9b19f6b8d91414bfe992f1e55236ea4d4f220 /tools/travis-ci | |
| parent | cc0c71c30b2f9c3c28b67a027b39df1fda0d1c9b (diff) | |
fix abi-check
Diffstat (limited to 'tools/travis-ci')
| -rwxr-xr-x | tools/travis-ci/abi-check.sh | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/tools/travis-ci/abi-check.sh b/tools/travis-ci/abi-check.sh index ec9d89b8..6845ed0a 100755 --- a/tools/travis-ci/abi-check.sh +++ b/tools/travis-ci/abi-check.sh @@ -71,7 +71,7 @@ rm -rf installed/openjpeg/current/* # Let's create all we need grep -v Git ${OPJ_SOURCE_DIR}/tools/abi-tracker/openjpeg.json > ./openjpeg.json -#abi-monitor ${OPJ_LIMIT_ABI_BUILDS} -get openjpeg.json +abi-monitor ${OPJ_LIMIT_ABI_BUILDS} -get openjpeg.json if [ "${OPJ_LIMIT_ABI_BUILDS}" != "" ]; then cp -f ${OPJ_SOURCE_DIR}/tools/abi-tracker/openjpeg.json ./openjpeg.json else @@ -79,7 +79,11 @@ else grep -v Configure ${OPJ_SOURCE_DIR}/tools/abi-tracker/openjpeg.json > ./openjpeg.json fi cp -rf ${OPJ_SOURCE_DIR} src/openjpeg/current -abi-monitor ${OPJ_LIMIT_ABI_BUILDS} -rebuild openjpeg.json +abi-monitor -v current -build openjpeg.json +abi-monitor -v ${OPJ_LATEST_VERSION} -build openjpeg.json +if [ "${OPJ_PREVIOUS_VERSION:-}" != "" ]; then + abi-monitor -v ${OPJ_PREVIOUS_VERSION} -build openjpeg.json +fi abi-tracker -build openjpeg.json EXIT_CODE=0 |
