Forked from JohannesRudolph/TestflihtappDeployTeamcity.sh
Created
April 23, 2012 04:06
-
-
Save iAladdin/2468811 to your computer and use it in GitHub Desktop.
Builds and deploys an App to testflightapp.com. Integrates with Teamcity.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# testflightapp.com tokens | |
API_TOKEN="YOUR_API_TOKEN" | |
TEAM_TOKEN="YOUR_TEAM_TOKEN" | |
PRODUCT_NAME="RowMotion" | |
ARTEFACTS="$PWD/Artefacts" | |
SIGNING_IDENTITY="iPhone Distribution" | |
PROVISIONING_PROFILE="$PWD/id/RowMotionAdHoc.mobileprovision" | |
# calculated vars | |
OUT_IPA="${ARTEFACTS}/${PRODUCT_NAME}.ipa" | |
OUT_DSYM="${ARTEFACTS}/${PRODUCT_NAME}.dSYM.zip" | |
# kill artefacts directory | |
rm -rf $ARTEFACTS | |
mkdir $ARTEFACTS | |
# compile | |
echo "##teamcity[compilationStarted compiler='xcodebuild']" | |
xcodebuild -workspace RowMotion.xcworkspace -scheme RowMotion -sdk iphoneos5.0 -configuration Release build archive | |
buildSucess=$? | |
if [[ $buildSucess != 0 ]] ; then | |
echo "##teamcity[message text='compiler error' status='ERROR']" | |
echo "##teamcity[compilationFinished compiler='xcodebuild']" | |
exit $buildSucess | |
fi | |
echo "##teamcity[compilationFinished compiler='xcodebuild']" | |
#ipa | |
echo "##teamcity[progressMessage 'Creating .ipa for ${PRODUCT_NAME}']" | |
DATE=$( /bin/date +"%Y-%m-%d" ) | |
ARCHIVE=$( /bin/ls -t "${HOME}/Library/Developer/Xcode/Archives/${DATE}" | /usr/bin/grep xcarchive | /usr/bin/sed -n 1p ) | |
DSYM="${HOME}/Library/Developer/Xcode/Archives/${DATE}/${ARCHIVE}/dSYMs/${PRODUCT_NAME}.app.dSYM" | |
APP="${HOME}/Library/Developer/Xcode/Archives/${DATE}/${ARCHIVE}/Products/Applications/${PRODUCT_NAME}.app" | |
/usr/bin/xcrun -sdk iphoneos PackageApplication -v "${APP}" -o "${OUT_IPA}" --sign "${SIGNING_IDENTITY}" --embed "${PROVISIONING_PROFILE}" | |
#symbols | |
echo "##teamcity[progressMessage 'Zipping .dSYM for ${PRODUCT_NAME}']" | |
/usr/bin/zip -r "${OUT_DSYM}" "${DSYM}" | |
# prepare build notes | |
NOTES=`hg tip` | |
#upload | |
echo "##teamcity[progressMessage 'Uploading ${PRODUCT_NAME} to TestFlight']" | |
/usr/bin/curl "http://testflightapp.com/api/builds.json" \ | |
-F file=@"${OUT_IPA}" \ | |
-F dsym=@"${OUT_DSYM}" \ | |
-F api_token="${API_TOKEN}" \ | |
-F team_token="${TEAM_TOKEN}" \ | |
-F notes="${NOTES}" \ | |
-F notify="True" \ | |
-F distribution_lists="Private" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment