2015-01-02 19:52:36 +00:00
|
|
|
#!/usr/bin/env bash
|
2013-02-16 15:36:41 +00:00
|
|
|
|
2015-01-02 19:52:36 +00:00
|
|
|
set -eo pipefail
|
2013-02-16 15:36:41 +00:00
|
|
|
|
2014-07-13 01:06:41 +00:00
|
|
|
root_dir=$(pwd)
|
|
|
|
|
2015-01-02 19:52:36 +00:00
|
|
|
flags="${@}"
|
|
|
|
|
2014-05-09 21:16:55 +00:00
|
|
|
run() {
|
|
|
|
echo '==============================================='
|
2014-07-13 01:06:41 +00:00
|
|
|
if [ ! $(pwd) = ${root_dir} ]; then
|
|
|
|
printf "cd $(pwd); "
|
|
|
|
fi
|
2014-05-09 21:16:55 +00:00
|
|
|
echo "${@}"
|
|
|
|
echo '==============================================='
|
|
|
|
"${@}"
|
|
|
|
}
|
|
|
|
|
2014-07-13 01:06:41 +00:00
|
|
|
run_cmake() {
|
|
|
|
mkdir -p cmake-build
|
|
|
|
rm -rf cmake-build/*
|
|
|
|
cd cmake-build
|
|
|
|
run cmake ${@} ..
|
|
|
|
run make -j4 check
|
|
|
|
cd ..
|
|
|
|
}
|
|
|
|
|
2015-01-02 19:52:36 +00:00
|
|
|
publish() {
|
|
|
|
local platforms="${1}"
|
|
|
|
local arches="${2}"
|
|
|
|
|
|
|
|
local platform
|
|
|
|
for platform in ${platforms}; do
|
|
|
|
local arch
|
|
|
|
for arch in ${arches}; do
|
|
|
|
echo "------ Publishing ${platform}-${arch} ------"
|
|
|
|
./gradlew artifactoryPublish -Pplatform=${platform} -Parch=${arch}
|
|
|
|
done
|
|
|
|
done
|
|
|
|
}
|
2014-08-15 21:29:53 +00:00
|
|
|
|
2014-08-17 19:56:13 +00:00
|
|
|
has_flag() {
|
2015-01-02 19:52:36 +00:00
|
|
|
local arg=${1}
|
|
|
|
|
|
|
|
local f
|
2014-08-15 21:29:53 +00:00
|
|
|
for f in ${flags}; do
|
|
|
|
local key=$(echo $f | awk -F '=' '{print $1}')
|
|
|
|
if [ ${key} = ${arg} ]; then
|
2014-08-17 19:56:13 +00:00
|
|
|
return 0
|
2014-08-15 21:29:53 +00:00
|
|
|
fi
|
|
|
|
done
|
2014-08-17 19:56:13 +00:00
|
|
|
return 1
|
2014-08-15 21:29:53 +00:00
|
|
|
}
|
|
|
|
|
2014-08-17 19:56:13 +00:00
|
|
|
make_target=test
|
|
|
|
|
2015-01-02 19:52:36 +00:00
|
|
|
if [[ "${1}" == "STEP" ]]; then
|
|
|
|
shift 1
|
|
|
|
if [[ "${1}" == "PUBLISH" ]]; then
|
|
|
|
if [[ $(uname -s) == "Darwin" || ${TRAVIS_OS_NAME} == "osx" ]]; then
|
|
|
|
publish "macosx" "i386 x86_64"
|
|
|
|
elif [[ $(uname -s) == "Linux" ]]; then
|
|
|
|
publish "linux windows" "i386 x86_64"
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
run make ${@}
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
if [[ $(uname -o) != "Cygwin" ]]; then
|
|
|
|
run_cmake -DCMAKE_BUILD_TYPE=Debug
|
|
|
|
fi
|
2014-07-13 01:06:41 +00:00
|
|
|
|
2015-01-02 19:52:36 +00:00
|
|
|
run make jdk-test
|
|
|
|
run make ${flags} ${make_target}
|
|
|
|
run make ${flags} mode=debug ${make_target}
|
|
|
|
run make ${flags} process=interpret ${make_target}
|
2014-08-17 19:56:13 +00:00
|
|
|
|
2015-01-02 19:52:36 +00:00
|
|
|
(has_flag openjdk-src || ! has_flag openjdk) && \
|
|
|
|
run make ${flags} mode=debug bootimage=true ${make_target} && \
|
|
|
|
run make ${flags} bootimage=true ${make_target}
|
2014-08-15 21:29:53 +00:00
|
|
|
|
2015-01-02 19:52:36 +00:00
|
|
|
(! has_flag openjdk && ! has_flag android) && \
|
|
|
|
run make ${flags} openjdk=$JAVA_HOME ${make_target}
|
2014-08-15 21:29:53 +00:00
|
|
|
|
2015-01-02 19:52:36 +00:00
|
|
|
run make ${flags} tails=true continuations=true heapdump=true ${make_target}
|
|
|
|
run make ${flags} codegen-targets=all
|
|
|
|
fi
|