http://stevenlu.com/posts/2015/08/18/circleci-ios-builds-to-hockeyapp/
Last active
May 23, 2020 16:12
-
-
Save sjlu/c648b762f7b17c9beeb6 to your computer and use it in GitHub Desktop.
Automating builds with CircleCI and HockeyApp
This file contains 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/sh | |
KEYCHAIN_PASSWORD=circleci | |
security create-keychain -p $KEYCHAIN_PASSWORD ios-build.keychain | |
security import ./scripts/apple.cer -k ~/Library/Keychains/ios-build.keychain -T /usr/bin/codesign | |
security import ./scripts/dev.cer -k ~/Library/Keychains/ios-build.keychain -T /usr/bin/codesign | |
security import ./scripts/dist.cer -k ~/Library/Keychains/ios-build.keychain -T /usr/bin/codesign | |
security import ./scripts/dev.p12 -k ~/Library/Keychains/ios-build.keychain -P $KEY_PASSWORD -T /usr/bin/codesign | |
security import ./scripts/dist.p12 -k ~/Library/Keychains/ios-build.keychain -P $KEY_PASSWORD -T /usr/bin/codesign | |
security list-keychain -s ~/Library/Keychains/ios-build.keychain | |
security unlock-keychain -p $KEYCHAIN_PASSWORD ~/Library/Keychains/ios-build.keychain | |
mkdir -p ~/Library/MobileDevice/Provisioning\ Profiles | |
cp ./scripts/profile/* ~/Library/MobileDevice/Provisioning\ Profiles/ |
This file contains 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/sh | |
#/usr/libexec/PlistBuddy -c "Set :CFBundleVersion $CIRCLE_BUILD_NUM" "yourappname/Info.plist" | |
ipa build --verbose -c Release |
This file contains 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
machine: | |
xcode: | |
version: "6.3.1" | |
dependencies: | |
pre: | |
- sudo gem install cocoapods | |
test: | |
override: | |
- ./scripts/add-key.sh | |
- ./scripts/build.sh | |
- ./scripts/remove-key.sh | |
deployment: | |
hockey: | |
branch: master | |
commands: | |
- ./scripts/deploy.sh |
This file contains 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/sh | |
ipa distribute:hockeyapp -m "$CIRCLE_SHA1" --token $HOCKEYAPP_TOKEN |
This file contains 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/sh | |
security delete-keychain ios-build.keychain | |
rm -f ~/Library/MobileDevice/Provisioning\ Profiles/* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
FWIW, The link in the README actually goes to
http://localhost:4000/posts/2015/08/18/circleci-ios-builds-to-hockeyapp/
. 😄