2012-06-25 21:14:58 +08:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
if [ "$WORKSPACE" == "" ]; then
|
|
|
|
echo "ERROR: Missing WORKSPACE environment variable."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
# remove old and create fresh build directories
|
|
|
|
rm -rf sgBuild
|
|
|
|
rm -rf fgBuild
|
|
|
|
mkdir -p sgBuild
|
|
|
|
mkdir -p fgBuild
|
|
|
|
mkdir -p output
|
|
|
|
rm -rf output/*
|
|
|
|
rm -rf $WORKSPACE/dist/include/simgear $WORKSPACE/dist/libSim* $WORKSPACE/dist/libsg*.a
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
echo "Starting on SimGear"
|
|
|
|
pushd sgBuild
|
2012-06-26 17:22:32 +08:00
|
|
|
cmake -DCMAKE_INSTALL_PREFIX:PATH=$WORKSPACE/dist -G Xcode ../simgear
|
2012-06-25 21:14:58 +08:00
|
|
|
|
|
|
|
# compile
|
2013-01-29 00:09:56 +08:00
|
|
|
xcodebuild -configuration RelWithDebInfo -target install build
|
2012-06-25 21:14:58 +08:00
|
|
|
|
|
|
|
if [ $? -ne '0' ]; then
|
|
|
|
echo "make simgear failed"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
popd
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
echo "Starting on FlightGear"
|
|
|
|
pushd fgBuild
|
2015-02-24 19:47:15 +08:00
|
|
|
cmake -DFG_NIGHTLY=1 -DCMAKE_INSTALL_PREFIX:PATH=$WORKSPACE/dist -G Xcode ../flightgear
|
2012-06-25 21:14:58 +08:00
|
|
|
|
2013-01-29 00:09:56 +08:00
|
|
|
xcodebuild -configuration RelWithDebInfo -target install build
|
2012-06-25 21:14:58 +08:00
|
|
|
|
|
|
|
if [ $? -ne '0' ]; then
|
|
|
|
echo "make flightgear failed"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
popd
|
|
|
|
|
|
|
|
chmod +x $WORKSPACE/dist/bin/osgversion
|
|
|
|
|
|
|
|
|
2012-08-02 17:34:00 +08:00
|
|
|
################################################################################
|
2015-01-19 07:37:36 +08:00
|
|
|
|
2012-08-14 19:11:48 +08:00
|
|
|
# run the unlock script now - we need to do this right before code-signing,
|
|
|
|
# or the keychain may automatically re-lock after some period of time
|
2012-08-23 01:35:52 +08:00
|
|
|
unlock-keychain.sh
|
2012-08-14 19:11:48 +08:00
|
|
|
|
2012-06-25 21:14:58 +08:00
|
|
|
echo "Running package script"
|
|
|
|
./hudson_mac_package_release.rb
|