axmol/tools/JenkinsScript/Mac/android/AndroidCompile-debug4_0-4_0...

80 lines
2.4 KiB
Bash

#!/bin/bash
#This script is used to finish a android automated compiler.
#You should make sure have finished the environment setting.
#Here are the environment variables you should set.
#$COCOS2DX_ROOT $ANDROID_SDK_ROOT $ANDROID_NDK_ROOT $NDK_ROOT
antcompile()
{
#Change API level.(API level:14)
sed '/target=/s/=.*$/=android-14/' ant.properties > anttmp.properties
cp anttmp.properties ant.properties
rm anttmp.properties
ant release
compileresult=$[$compileresult+$?]
#Change API level.(API level:15)
sed '/target=/s/=.*$/=android-15/' ant.properties > anttmp.properties
cp anttmp.properties ant.properties
rm anttmp.properties
ant release
compileresult=$[$compileresult+$?]
#After all test versions completed,changed current API level to the original.(API level:8)
sed '/target=/s/=.*$/=android-8/' ant.properties > anttmp.properties
cp anttmp.properties ant.properties
rm anttmp.properties
}
#record the relevant catalog
compileresult=0
CUR=$(pwd)
cd ../../../..
ROOT=$(pwd)
#copy configuration files to target.
cp $ROOT/tools/JenkinsScript/ant.properties $ROOT/samples/TestCpp/proj.android
cp $ROOT/tools/JenkinsScript/build.xml $ROOT/samples/TestCpp/proj.android
cp $$ROOT/tools/JenkinsScript/Mac/rootconfig-Mac.sh $ROOT/samples/TestCpp/proj.android
cd samples/TestCpp/proj.android
sh rootconfig-Mac.sh TestCpp
sh build_native.sh
#update android project configuration files
cd ..
android update project -p proj.android
cd proj.android
antcompile
cp $ROOT/tools/JenkinsScript/ant.properties $ROOT/samples/HelloCpp/proj.android
cp $ROOT/tools/JenkinsScript/build.xml $ROOT/samples/HelloCpp/proj.android
cp $$ROOT/tools/JenkinsScript/Mac/rootconfig-Mac.sh $ROOT/samples/HelloCpp/proj.android
cd ../../HelloCpp/proj.android
sh rootconfig-Mac.sh HelloCpp
sh build_native.sh
cd ..
android update project -p proj.android
cd proj.android
antcompile
cp $ROOT/tools/JenkinsScript/ant.properties $ROOT/samples/HelloLua/proj.android
cp $ROOT/tools/JenkinsScript/build.xml $ROOT/samples/HelloLua/proj.android
cp $$ROOT/tools/JenkinsScript/Mac/rootconfig-Mac.sh $ROOT/samples/HelloLua/proj.android
cd ../../HelloLua/proj.android
sh rootconfig-Mac.sh HelloLua
sh build_native.sh
cd ..
android update project -p proj.android
cd proj.android
antcompile
#return the compileresult.
cd ../../..
if [ $compileresult != 0 ]; then
git checkout -f
git clean -df -x
exit 1
else
git checkout -f
git clean -df -x
fi