diff options
| author | Julien Malik <julien.malik@paraiso.me> | 2016-04-19 15:25:42 +0200 |
|---|---|---|
| committer | Julien Malik <julien.malik@paraiso.me> | 2016-04-21 17:58:19 +0200 |
| commit | 6ea2ff0b0627655d36ad7cc7483de7592b8bcbd1 (patch) | |
| tree | 1d4801852e2c8814f6a1a44758af755feaf3a911 | |
| parent | 3436c4e9baac1fd847c4475b961802cd1c9bbe7e (diff) | |
Update jpylyzer to 1.17.0
| -rwxr-xr-x | tools/travis-ci/install.sh | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/tools/travis-ci/install.sh b/tools/travis-ci/install.sh index be99383e..003f8fa8 100755 --- a/tools/travis-ci/install.sh +++ b/tools/travis-ci/install.sh @@ -62,16 +62,17 @@ if [ "${OPJ_CI_SKIP_TESTS:-}" != "1" ]; then git clone --depth=1 --branch=${OPJ_DATA_BRANCH} git://github.com/uclouvain/openjpeg-data.git data # We need jpylyzer for the test suite + JPYLYZER_VERSION="1.17.0" echo "Retrieving jpylyzer" if [ "${APPVEYOR:-}" == "True" ]; then - wget --local-encoding=UTF-8 -q http://dl.bintray.com/openplanets/opf-windows/jpylyzer_1.14.2_win32.zip + wget --local-encoding=UTF-8 -q http://dl.bintray.com/openplanets/opf-windows/jpylyzer_${JPYLYZER_VERSION}_win32.zip mkdir jpylyzer cd jpylyzer - cmake -E tar -xf ../jpylyzer_1.14.2_win32.zip + cmake -E tar -xf ../jpylyzer_${JPYLYZER_VERSION}_win32.zip cd .. else - wget -qO - https://github.com/openpreserve/jpylyzer/archive/1.14.2.tar.gz | tar -xz - mv jpylyzer-1.14.2/jpylyzer ./ + wget -qO - https://github.com/openpreserve/jpylyzer/archive/${JPYLYZER_VERSION}.tar.gz | tar -xz + mv jpylyzer-${JPYLYZER_VERSION}/jpylyzer ./ chmod +x jpylyzer/jpylyzer.py fi |
