Use make under windows
[openjpeg.git] / tools / travis-ci / install.sh
1 #!/bin/bash
2
3 # This script executes the install step when running under travis-ci
4
5 #if cygwin, check path
6 case ${MACHTYPE} in
7         *cygwin*) OPJ_CI_IS_CYGWIN=1;;
8         *) ;;
9 esac
10
11 if [ "${OPJ_CI_IS_CYGWIN:-}" == "1" ]; then
12         # Hack for appveyor
13         if ! which wget; then
14                 # PATH is not yet set up
15                 export PATH=$PATH:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin
16         fi
17 fi
18
19 # Set-up some error handling
20 set -o nounset   ## set -u : exit the script if you try to use an uninitialised variable
21 set -o errexit   ## set -e : exit the script if any statement returns a non-true return value
22 set -o pipefail  ## Fail on error in pipe
23
24 function exit_handler ()
25 {
26         local exit_code="$?"
27         
28         test ${exit_code} == 0 && return;
29
30         echo -e "\nInstall failed !!!\nLast command at line ${BASH_LINENO}: ${BASH_COMMAND}";
31         exit "${exit_code}"
32 }
33 trap exit_handler EXIT
34 trap exit ERR
35
36 # We don't need anything for coverity scan builds. ABI check is managed in abi-check.sh
37 if [ "${COVERITY_SCAN_BRANCH:-}" == "1" ] || [ "${OPJ_CI_ABI_CHECK:-}" == "1" ]; then
38         exit 0
39 fi
40
41 if [ "${OPJ_CI_ASAN:-}" == "1" ]; then
42         # We need a new version of cmake than travis-ci provides
43         wget -qO - http://www.cmake.org/files/v3.3/cmake-3.3.1-Linux-x86_64.tar.gz | tar -xz
44         # copy to a directory that will not changed every version
45         mv cmake-3.3.1-Linux-x86_64 cmake-install
46 fi
47
48 if [ "${OPJ_CI_SKIP_TESTS:-}" != "1" ]; then
49
50         OPJ_SOURCE_DIR=$(cd $(dirname $0)/../.. && pwd)
51
52         # We need test data
53         if [ "${TRAVIS_BRANCH:-}" != "" ]; then
54                 OPJ_DATA_BRANCH=${TRAVIS_BRANCH}
55         elif [ "${APPVEYOR_REPO_BRANCH:-}" != "" ]; then
56                 OPJ_DATA_BRANCH=${APPVEYOR_REPO_BRANCH}
57         else
58                 OPJ_DATA_BRANCH=$(git -C ${OPJ_SOURCE_DIR} branch | grep '*' | tr -d '*[[:blank:]]') #default to same branch as we're setting up
59         fi
60         OPJ_DATA_HAS_BRANCH=$(git ls-remote --heads git://github.com/uclouvain/openjpeg-data.git ${OPJ_DATA_BRANCH} | wc -l)
61         if [ ${OPJ_DATA_HAS_BRANCH} -ne 0 ]; then
62                 OPJ_DATA_BRANCH=${TRAVIS_BRANCH}
63         else
64                 OPJ_DATA_BRANCH=master #default to master
65         fi
66         echo "Cloning openjpeg-data from ${OPJ_DATA_BRANCH} branch"
67         git clone --depth=1 --branch=${OPJ_DATA_BRANCH} git://github.com/uclouvain/openjpeg-data.git data
68
69         # We need jpylyzer for the test suite
70         echo "Retrieving jpylyzer"
71         if [ "${APPVEYOR:-}" == "True" ]; then
72                 wget --local-encoding=UTF-8 -q http://dl.bintray.com/openplanets/opf-windows/jpylyzer_1.14.2_win32.zip
73                 mkdir jpylyzer
74                 cd jpylyzer
75                 cmake -E tar -xf ../jpylyzer_1.14.2_win32.zip
76                 cd ..
77         else
78                 wget -qO - https://github.com/openpreserve/jpylyzer/archive/1.14.2.tar.gz | tar -xz
79                 mv jpylyzer-1.14.2/jpylyzer ./
80                 chmod +x jpylyzer/jpylyzer.py
81         fi
82
83         # When OPJ_NONCOMMERCIAL=1, kakadu trial binaries are used for testing. Here's the copyright notice from kakadu:
84         # Copyright is owned by NewSouth Innovations Pty Limited, commercial arm of the UNSW Australia in Sydney.
85         # You are free to trial these executables and even to re-distribute them, 
86         # so long as such use or re-distribution is accompanied with this copyright notice and is not for commercial gain.
87         # Note: Binaries can only be used for non-commercial purposes.
88         if [ "${OPJ_NONCOMMERCIAL:-}" == "1" ]; then
89                 if [ "${TRAVIS_OS_NAME:-}" == "linux" ] || uname -s | grep -i Linux &> /dev/null; then
90                         echo "Retrieving Kakadu"
91                         wget -q http://kakadusoftware.com/wp-content/uploads/2014/06/KDU77_Demo_Apps_for_Linux-x86-64_150710.zip
92                         cmake -E tar -xf KDU77_Demo_Apps_for_Linux-x86-64_150710.zip
93                         mv KDU77_Demo_Apps_for_Linux-x86-64_150710 kdu
94                 elif [ "${TRAVIS_OS_NAME:-}" == "osx" ] || uname -s | grep -i Darwin &> /dev/null; then
95                         echo "Retrieving Kakadu"
96                         wget -q http://kakadusoftware.com/wp-content/uploads/2014/06/KDU77_Demo_Apps_for_OSX109_150710.dmg_.zip
97                         cmake -E tar -xf KDU77_Demo_Apps_for_OSX109_150710.dmg_.zip
98                         wget -q http://downloads.sourceforge.net/project/catacombae/HFSExplorer/0.23/hfsexplorer-0.23-bin.zip
99                         mkdir hfsexplorer && cmake -E chdir hfsexplorer tar -xf ../hfsexplorer-0.23-bin.zip
100                         ./hfsexplorer/bin/unhfs.sh -o ./ -fsroot Kakadu-demo-apps.pkg  KDU77_Demo_Apps_for_OSX109_150710.dmg
101                         pkgutil --expand Kakadu-demo-apps.pkg ./kdu
102                         cd kdu
103                         cat libkduv77r.pkg/Payload | gzip -d | cpio -id
104                         cat kduexpand.pkg/Payload | gzip -d | cpio -id
105                         cat kducompress.pkg/Payload | gzip -d | cpio -id
106                         install_name_tool -id ${PWD}/libkdu_v77R.dylib libkdu_v77R.dylib 
107                         install_name_tool -change /usr/local/lib/libkdu_v77R.dylib ${PWD}/libkdu_v77R.dylib kdu_compress
108                         install_name_tool -change /usr/local/lib/libkdu_v77R.dylib ${PWD}/libkdu_v77R.dylib kdu_expand
109                 elif [ "${APPVEYOR:-}" == "True" ]; then
110                         echo "Retrieving Kakadu"
111                         wget -q http://kakadusoftware.com/wp-content/uploads/2014/06/KDU77_Demo_Apps_for_Win32_150710.msi_.zip
112                         cmake -E tar -xf KDU77_Demo_Apps_for_Win32_150710.msi_.zip
113                         msiexec /i KDU77_Demo_Apps_for_Win32_150710.msi /quiet /qn /norestart
114                 fi
115         fi
116 fi