Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/openbakery/iOS-Build-Scripts
iOS-Build-Scripts
https://github.com/openbakery/iOS-Build-Scripts
Last synced: 3 months ago
JSON representation
iOS-Build-Scripts
- Host: GitHub
- URL: https://github.com/openbakery/iOS-Build-Scripts
- Owner: openbakery
- License: mit
- Created: 2012-08-14T10:31:39.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2013-01-14T08:58:20.000Z (almost 12 years ago)
- Last Synced: 2024-07-18T22:20:31.431Z (4 months ago)
- Language: Shell
- Size: 121 KB
- Stars: 59
- Watchers: 10
- Forks: 13
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
iOS-Build-Scripts
=================__Note: Discontinued! The successor is the gradle xcode plugin: https://github.com/openbakery/gradle-xcodePlugin__
Scripts to build iOS application that can be used with a build server like Jenkins
BUILD PARAMETERS
-----------------* __CONFIGURATION__ (required)
The configration that should be build
e.g. 'Release', 'Debug' or 'Distribution'* __SDK__ (required)
The SDK that should be used
e.g. 'iphoneos'* __TARGET__ (required)
The target name that should be build
* __VERSION_NUMBER__ (optional)
Version number that should be user for the App file name.
If not set the build number is used._Note:_ The Version number is only used for the filename
* __BUNDLE_IDENTIFIER__ (optional)
The bundle identifier in the plist is modified using this value if set.
* __KEYCHAIN_PASSWORD__ (optional)
Password that should be used for the keychain
If not set a default password is used!* __PROVISIONING__ (optional)
Name of the provisioning profile and Certificate file that are used for signing
e.g. if you specify "Developer" then a Developer.mobileprovision and Developer.p12 is expectedIf not set, that the app is not signed
* __PROVISIONING_URL__ (optional but needed for PROVISIONING)
URL where the provisioning profile is not found.
e.g.
PROVISIONING_URL=http://localhost
PROVISIONING=test
then the following files are fetched
http://localhost/test.p12
http://localhost/test.mobileprovision
Note: curl is used to fetch these files therefor als ftp should work (but not tested)* __CERTIFICATES_PASSWORD__ (optional)
Password to access the .p12 Certificate file
If not set, that the app is not signed
* __XCODE_SETTINGS__ (optional)
For setting additional infos to xcodebuild command for example:
preprocessor macros
* __HOCKEYKIT__ (optional)
HockeyKit will be used
A manifest is beeing created.
Releasenotes for HockeyKit server page is beeing created (taken from CHANGELOG). If CHANGELOG is not set
'No changes.' will be used.
* __HOCKEYKIT_APP_NAME__ (optional)
Name that is used for displaying on the HockeyKit Server page.
If it is not specified but HOCKEYKIT enabled the Target that was build is used as displayed name on
the HockeyKit Server page.