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/* |
also, nice work 🤘
@marcomorain I found that cocoapods needs to be updated in order for certain things to build correctly. The current version on CircleCI seems to have a related bug to code signing.
how is the ipa command available? I'm only finding that here… (https://github.com/nomad/shenzhen) but doesn't appear it would be installed automatically on circle.
They may have updated it in their recent Xcode build? I'm not really sure.
FWIW, The link in the README actually goes to http://localhost:4000/posts/2015/08/18/circleci-ios-builds-to-hockeyapp/
. 😄
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @sjlu - you can remove the
remove-key.sh
script here - all builds run a fresh container so there no need to clean up after yourself.You can also remove the call to install cocoapods – it's installed by default on our containers.