2015-09-12 02:19:28 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# This script executes the script step when running under travis-ci
|
|
|
|
|
|
|
|
# Set-up some bash options
|
|
|
|
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
|
|
|
|
set -o pipefail ## Fail on error in pipe
|
|
|
|
|
2015-10-08 20:06:59 +02:00
|
|
|
# ABI check is done by abi-check.sh
|
|
|
|
if [ "${OPJ_CI_ABI_CHECK:-}" == "1" ]; then
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2015-09-12 02:19:28 +02:00
|
|
|
# Set-up some variables
|
2015-09-12 16:11:56 +02:00
|
|
|
if [ "${OPJ_CI_BUILD_CONFIGURATION:-}" == "" ]; then
|
|
|
|
export OPJ_CI_BUILD_CONFIGURATION=Release #default
|
|
|
|
fi
|
2015-09-12 02:19:28 +02:00
|
|
|
OPJ_SOURCE_DIR=$(cd $(dirname $0)/../.. && pwd)
|
|
|
|
|
2015-09-12 05:26:19 +02:00
|
|
|
if [ "${OPJ_DO_SUBMIT:-}" == "" ]; then
|
|
|
|
OPJ_DO_SUBMIT=0 # Do not flood cdash by default
|
|
|
|
fi
|
2015-09-12 02:34:14 +02:00
|
|
|
if [ "${TRAVIS_REPO_SLUG:-}" != "" ]; then
|
|
|
|
OPJ_OWNER=$(echo "${TRAVIS_REPO_SLUG}" | sed 's/\(^.*\)\/.*/\1/')
|
|
|
|
OPJ_SITE="${OPJ_OWNER}.travis-ci.org"
|
|
|
|
if [ "${OPJ_OWNER}" == "uclouvain" ]; then
|
|
|
|
OPJ_DO_SUBMIT=1
|
|
|
|
fi
|
2015-09-12 02:19:28 +02:00
|
|
|
else
|
|
|
|
OPJ_SITE="$(hostname)"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "${TRAVIS_OS_NAME:-}" == "" ]; then
|
|
|
|
# Let's guess OS for testing purposes
|
|
|
|
echo "Guessing OS"
|
|
|
|
if uname -s | grep -i Darwin &> /dev/null; then
|
|
|
|
TRAVIS_OS_NAME=osx
|
|
|
|
elif uname -s | grep -i Linux &> /dev/null; then
|
|
|
|
TRAVIS_OS_NAME=linux
|
|
|
|
if [ "${CC:-}" == "" ]; then
|
|
|
|
# default to gcc
|
|
|
|
export CC=gcc
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
echo "Failed to guess OS"; exit 1
|
|
|
|
fi
|
|
|
|
echo "${TRAVIS_OS_NAME}"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "${TRAVIS_OS_NAME}" == "osx" ]; then
|
|
|
|
OPJ_OS_NAME=$(sw_vers -productName | tr -d ' ')$(sw_vers -productVersion | sed 's/\([^0-9]*\.[0-9]*\).*/\1/')
|
|
|
|
OPJ_CC_VERSION=$(xcodebuild -version | grep -i xcode)
|
|
|
|
OPJ_CC_VERSION=xcode${OPJ_CC_VERSION:6}
|
|
|
|
elif [ "${TRAVIS_OS_NAME}" == "linux" ]; then
|
|
|
|
OPJ_OS_NAME=linux
|
|
|
|
if which lsb_release > /dev/null; then
|
|
|
|
OPJ_OS_NAME=$(lsb_release -si)$(lsb_release -sr | sed 's/\([^0-9]*\.[0-9]*\).*/\1/')
|
|
|
|
fi
|
2015-09-12 17:56:29 +02:00
|
|
|
if [ -z "${CC##*gcc*}" ]; then
|
|
|
|
OPJ_CC_VERSION=$(${CC} --version | head -1 | sed 's/.*\ \([0-9.]*[0-9]\)/\1/')
|
|
|
|
if [ -z "${CC##*mingw*}" ]; then
|
|
|
|
OPJ_CC_VERSION=mingw${OPJ_CC_VERSION}
|
|
|
|
# disable testing for now
|
|
|
|
export OPJ_CI_SKIP_TESTS=1
|
|
|
|
else
|
|
|
|
OPJ_CC_VERSION=gcc${OPJ_CC_VERSION}
|
|
|
|
fi
|
|
|
|
elif [ -z "${CC##*clang*}" ]; then
|
2015-09-12 02:19:28 +02:00
|
|
|
OPJ_CC_VERSION=clang$(${CC} --version | grep version | sed 's/.*version \([^0-9.]*[0-9.]*\).*/\1/')
|
|
|
|
else
|
2015-09-12 15:48:23 +02:00
|
|
|
echo "Compiler not supported: ${CC}"; exit 1
|
2015-09-12 02:19:28 +02:00
|
|
|
fi
|
|
|
|
else
|
2015-09-12 15:48:23 +02:00
|
|
|
echo "OS not supported: ${TRAVIS_OS_NAME}"; exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "${OPJ_CI_ARCH:-}" == "" ]; then
|
|
|
|
echo "Guessing build architecture"
|
|
|
|
MACHINE_ARCH=$(uname -m)
|
|
|
|
if [ "${MACHINE_ARCH}" == "x86_64" ]; then
|
|
|
|
export OPJ_CI_ARCH=x86_64
|
|
|
|
fi
|
|
|
|
echo "${OPJ_CI_ARCH}"
|
2015-09-12 02:19:28 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "${TRAVIS_BRANCH:-}" == "" ]; then
|
|
|
|
echo "Guessing branch"
|
2015-09-12 02:59:49 +02:00
|
|
|
TRAVIS_BRANCH=$(git -C ${OPJ_SOURCE_DIR} branch | grep '*' | tr -d '*[[:blank:]]') #default to master
|
2015-09-12 02:19:28 +02:00
|
|
|
fi
|
|
|
|
|
2015-09-12 15:48:23 +02:00
|
|
|
OPJ_BUILDNAME=${OPJ_OS_NAME}-${OPJ_CC_VERSION}-${OPJ_CI_ARCH}-${TRAVIS_BRANCH}
|
2015-09-12 19:32:05 +02:00
|
|
|
OPJ_BUILDNAME_TEST=${OPJ_OS_NAME}-${OPJ_CC_VERSION}-${OPJ_CI_ARCH}
|
2015-09-12 02:19:28 +02:00
|
|
|
if [ "${TRAVIS_PULL_REQUEST:-}" != "false" ] && [ "${TRAVIS_PULL_REQUEST:-}" != "" ]; then
|
|
|
|
OPJ_BUILDNAME=${OPJ_BUILDNAME}-pr${TRAVIS_PULL_REQUEST}
|
|
|
|
fi
|
2015-09-12 16:11:56 +02:00
|
|
|
OPJ_BUILDNAME=${OPJ_BUILDNAME}-${OPJ_CI_BUILD_CONFIGURATION}-3rdP
|
2015-09-12 19:32:05 +02:00
|
|
|
OPJ_BUILDNAME_TEST=${OPJ_BUILDNAME_TEST}-${OPJ_CI_BUILD_CONFIGURATION}-3rdP
|
2015-09-12 16:36:19 +02:00
|
|
|
if [ "${OPJ_CI_ASAN:-}" == "1" ]; then
|
|
|
|
OPJ_BUILDNAME=${OPJ_BUILDNAME}-ASan
|
2015-09-12 19:32:05 +02:00
|
|
|
OPJ_BUILDNAME_TEST=${OPJ_BUILDNAME_TEST}-ASan
|
2015-09-12 16:36:19 +02:00
|
|
|
fi
|
2015-09-12 02:19:28 +02:00
|
|
|
|
2015-09-12 15:48:23 +02:00
|
|
|
if [ "${OPJ_NONCOMMERCIAL:-}" == "1" ] && [ "${OPJ_CI_SKIP_TESTS:-}" != "1" ] && [ -d kdu ]; then
|
2015-09-12 02:19:28 +02:00
|
|
|
echo "
|
|
|
|
Testing will use Kakadu trial binaries. Here's the copyright notice from kakadu:
|
|
|
|
Copyright is owned by NewSouth Innovations Pty Limited, commercial arm of the UNSW Australia in Sydney.
|
|
|
|
You are free to trial these executables and even to re-distribute them,
|
|
|
|
so long as such use or re-distribution is accompanied with this copyright notice and is not for commercial gain.
|
|
|
|
Note: Binaries can only be used for non-commercial purposes.
|
|
|
|
"
|
|
|
|
fi
|
|
|
|
|
2015-09-12 16:36:19 +02:00
|
|
|
if [ -d cmake-install ]; then
|
|
|
|
export PATH=${PWD}/cmake-install/bin:${PATH}
|
|
|
|
fi
|
|
|
|
|
2015-09-12 02:19:28 +02:00
|
|
|
set -x
|
2015-09-12 05:26:19 +02:00
|
|
|
# This will print configuration
|
2015-09-12 15:48:23 +02:00
|
|
|
# travis-ci doesn't dump cmake version in system info, let's print it
|
|
|
|
cmake --version
|
|
|
|
|
2015-09-12 05:44:52 +02:00
|
|
|
export OPJ_SITE=${OPJ_SITE}
|
|
|
|
export OPJ_BUILDNAME=${OPJ_BUILDNAME}
|
2015-09-12 05:26:19 +02:00
|
|
|
export OPJ_SOURCE_DIR=${OPJ_SOURCE_DIR}
|
2015-09-12 16:11:56 +02:00
|
|
|
export OPJ_BUILD_CONFIGURATION=${OPJ_CI_BUILD_CONFIGURATION}
|
2015-09-12 05:44:52 +02:00
|
|
|
export OPJ_DO_SUBMIT=${OPJ_DO_SUBMIT}
|
2015-09-12 02:19:28 +02:00
|
|
|
|
2015-09-13 16:09:24 +02:00
|
|
|
ctest -S ${OPJ_SOURCE_DIR}/tools/ctest_scripts/travis-ci.cmake -V || true
|
|
|
|
# ctest will exit with various error codes depending on version.
|
|
|
|
# ignore ctest exit code & parse this ourselves
|
2015-09-12 19:32:05 +02:00
|
|
|
set +x
|
2015-09-13 16:09:24 +02:00
|
|
|
|
|
|
|
# let's parse configure/build/tests for failure
|
|
|
|
|
2015-09-12 19:32:05 +02:00
|
|
|
echo "
|
2015-09-13 16:09:24 +02:00
|
|
|
Parsing logs for failures
|
2015-09-12 19:32:05 +02:00
|
|
|
"
|
|
|
|
OPJ_CI_RESULT=0
|
|
|
|
|
2015-09-13 16:09:24 +02:00
|
|
|
# 1st configure step
|
|
|
|
OPJ_CONFIGURE_XML=$(find build -path 'build/Testing/*' -name 'Configure.xml')
|
|
|
|
if [ ! -f "${OPJ_CONFIGURE_XML}" ]; then
|
|
|
|
echo "No configure log found"
|
|
|
|
OPJ_CI_RESULT=1
|
|
|
|
else
|
|
|
|
if ! grep '<ConfigureStatus>0</ConfigureStatus>' ${OPJ_CONFIGURE_XML} &> /dev/null; then
|
|
|
|
echo "Errors were found in configure log"
|
|
|
|
OPJ_CI_RESULT=1
|
|
|
|
fi
|
|
|
|
fi
|
2015-09-12 20:06:31 +02:00
|
|
|
|
2015-09-13 16:09:24 +02:00
|
|
|
# 2nd build step
|
|
|
|
# We must have one Build.xml file
|
|
|
|
OPJ_BUILD_XML=$(find build -path 'build/Testing/*' -name 'Build.xml')
|
|
|
|
if [ ! -f "${OPJ_BUILD_XML}" ]; then
|
|
|
|
echo "No build log found"
|
|
|
|
OPJ_CI_RESULT=1
|
|
|
|
else
|
|
|
|
if grep '<Error>' ${OPJ_BUILD_XML} &> /dev/null; then
|
|
|
|
echo "Errors were found in build log"
|
2015-09-12 20:06:31 +02:00
|
|
|
OPJ_CI_RESULT=1
|
2015-09-13 16:09:24 +02:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ ${OPJ_CI_RESULT} -ne 0 ]; then
|
|
|
|
# Don't trash output with failing tests when there are configure/build errors
|
|
|
|
exit ${OPJ_CI_RESULT}
|
2015-09-12 20:06:31 +02:00
|
|
|
fi
|
2015-09-12 19:32:05 +02:00
|
|
|
|
2015-09-13 16:09:24 +02:00
|
|
|
if [ "${OPJ_CI_SKIP_TESTS:-}" != "1" ]; then
|
|
|
|
OPJ_TEST_XML=$(find build -path 'build/Testing/*' -name 'Test.xml')
|
|
|
|
if [ ! -f "${OPJ_TEST_XML}" ]; then
|
|
|
|
echo "No test log found"
|
|
|
|
OPJ_CI_RESULT=1
|
|
|
|
else
|
|
|
|
echo "Parsing tests for new/unknown failures"
|
|
|
|
# 3rd test step
|
|
|
|
OPJ_FAILEDTEST_LOG=$(find build -path 'build/Testing/Temporary/*' -name 'LastTestsFailed_*.log')
|
|
|
|
if [ -f "${OPJ_FAILEDTEST_LOG}" ]; then
|
|
|
|
awk -F: '{ print $2 }' ${OPJ_FAILEDTEST_LOG} > failures.txt
|
|
|
|
while read FAILEDTEST; do
|
|
|
|
# Start with common errors
|
|
|
|
if grep -x "${FAILEDTEST}" ${OPJ_SOURCE_DIR}/tools/travis-ci/knownfailures-all.txt > /dev/null; then
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
if [ -f ${OPJ_SOURCE_DIR}/tools/travis-ci/knownfailures-${OPJ_BUILDNAME_TEST}.txt ]; then
|
|
|
|
if grep -x "${FAILEDTEST}" ${OPJ_SOURCE_DIR}/tools/travis-ci/knownfailures-${OPJ_BUILDNAME_TEST}.txt > /dev/null; then
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
echo "${FAILEDTEST}"
|
|
|
|
OPJ_CI_RESULT=1
|
|
|
|
done < failures.txt
|
|
|
|
fi
|
|
|
|
fi
|
2015-09-14 20:09:50 +02:00
|
|
|
|
2015-09-13 16:09:24 +02:00
|
|
|
if [ ${OPJ_CI_RESULT} -eq 0 ]; then
|
2015-09-14 20:09:50 +02:00
|
|
|
echo "No new/unknown test failure found
|
|
|
|
"
|
2015-09-13 16:09:24 +02:00
|
|
|
else
|
|
|
|
echo "
|
|
|
|
New/unknown test failure found!!!
|
|
|
|
"
|
|
|
|
fi
|
2015-09-14 20:09:50 +02:00
|
|
|
|
|
|
|
# 4th memcheck step
|
|
|
|
OPJ_MEMCHECK_XML=$(find build -path 'build/Testing/*' -name 'DynamicAnalysis.xml')
|
|
|
|
if [ -f "${OPJ_MEMCHECK_XML}" ]; then
|
|
|
|
if grep '<Defect Type' ${OPJ_MEMCHECK_XML} 2> /dev/null; then
|
|
|
|
echo "Errors were found in dynamic analysis log"
|
|
|
|
OPJ_CI_RESULT=1
|
|
|
|
fi
|
|
|
|
fi
|
2015-09-12 19:32:05 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
exit ${OPJ_CI_RESULT}
|