Debug build
[openjpeg.git] / tools / travis-ci / install.sh
index ce85c97fa9737a50e7e0b9ec4fcef6004dece9f1..3b122434f5a1f3ef21f26c3aeb8d77645932a37a 100755 (executable)
@@ -2,6 +2,20 @@
 
 # This script executes the install step when running under travis-ci
 
+#if cygwin, check path
+case ${MACHTYPE} in
+       *cygwin*) OPJ_CI_IS_CYGWIN=1;;
+       *) ;;
+esac
+
+if [ "${OPJ_CI_IS_CYGWIN:-}" == "1" ]; then
+       # Hack for appveyor
+       if ! which wget; then
+               # PATH is not yet set up
+               export PATH=$PATH:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin
+       fi
+fi
+
 # Set-up some error handling
 set -o nounset   ## set -u : exit the script if you try to use an uninitialised variable
 set -o errexit   ## set -e : exit the script if any statement returns a non-true return value
@@ -36,10 +50,14 @@ if [ "${OPJ_CI_SKIP_TESTS:-}" != "1" ]; then
        OPJ_SOURCE_DIR=$(cd $(dirname $0)/../.. && pwd)
 
        # We need test data
-       if [ "${TRAVIS_BRANCH:-}" == "" ]; then
-               TRAVIS_BRANCH=$(git -C ${OPJ_SOURCE_DIR} branch | grep '*' | tr -d '*[[:blank:]]') #default to same branch as we're setting up
+       if [ "${TRAVIS_BRANCH:-}" != "" ]; then
+               OPJ_DATA_BRANCH=${TRAVIS_BRANCH}
+       elif [ "${APPVEYOR_REPO_BRANCH:-}" != "" ]; then
+               OPJ_DATA_BRANCH=${APPVEYOR_REPO_BRANCH}
+       else
+               OPJ_DATA_BRANCH=$(git -C ${OPJ_SOURCE_DIR} branch | grep '*' | tr -d '*[[:blank:]]') #default to same branch as we're setting up
        fi
-       OPJ_DATA_HAS_BRANCH=$(git ls-remote --heads git://github.com/uclouvain/openjpeg-data.git ${TRAVIS_BRANCH} | wc -l)
+       OPJ_DATA_HAS_BRANCH=$(git ls-remote --heads git://github.com/uclouvain/openjpeg-data.git ${OPJ_DATA_BRANCH} | wc -l)
        if [ ${OPJ_DATA_HAS_BRANCH} -ne 0 ]; then
                OPJ_DATA_BRANCH=${TRAVIS_BRANCH}
        else
@@ -50,9 +68,17 @@ if [ "${OPJ_CI_SKIP_TESTS:-}" != "1" ]; then
 
        # We need jpylyzer for the test suite
        echo "Retrieving jpylyzer"
-       wget -qO - https://github.com/openpreserve/jpylyzer/archive/1.14.2.tar.gz | tar -xz
-       mv jpylyzer-1.14.2 jpylyzer
-       chmod +x jpylyzer/jpylyzer/jpylyzer.py
+       if [ "${APPVEYOR:-}" == "True" ]; then
+               wget --local-encoding=UTF-8 -q http://dl.bintray.com/openplanets/opf-windows/jpylyzer_1.14.2_win32.zip
+               mkdir jpylyzer
+               cd jpylyzer
+               cmake -E tar -xf ../jpylyzer_1.14.2_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 ./
+               chmod +x jpylyzer/jpylyzer.py
+       fi
 
        # When OPJ_NONCOMMERCIAL=1, kakadu trial binaries are used for testing. Here's the copyright notice from kakadu:
        # Copyright is owned by NewSouth Innovations Pty Limited, commercial arm of the UNSW Australia in Sydney.
@@ -80,6 +106,10 @@ if [ "${OPJ_CI_SKIP_TESTS:-}" != "1" ]; then
                        install_name_tool -id ${PWD}/libkdu_v77R.dylib libkdu_v77R.dylib 
                        install_name_tool -change /usr/local/lib/libkdu_v77R.dylib ${PWD}/libkdu_v77R.dylib kdu_compress
                        install_name_tool -change /usr/local/lib/libkdu_v77R.dylib ${PWD}/libkdu_v77R.dylib kdu_expand
+               elif [ "${APPVEYOR:-}" == "True" ]; then
+                       wget -q http://kakadusoftware.com/wp-content/uploads/2014/06/KDU77_Demo_Apps_for_Win32_150710.msi_.zip
+                       cmake -E tar -xf KDU77_Demo_Apps_for_Win32_150710.msi_.zip
+                       msiexec /i KDU77_Demo_Apps_for_Win32_150710.msi /quiet /qn /norestart
                fi
        fi
 fi