This repository has been archived by the owner on Feb 11, 2019. It is now read-only.
forked from carlossless/tangerine
-
Notifications
You must be signed in to change notification settings - Fork 1
/
example.config
executable file
·52 lines (40 loc) · 2.02 KB
/
example.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#WORKSPACE is the root working directory of the application. Jenkins sets this to itself.
#export WORKSPACE="."
#KEYCHAIN If you are going to use a custom keychain for your app build.
#export KEYCHAIN=True
#export KEYCHAIN_PATH="/somepath/to/login.keychain"
#export KEYCHAIN_PASSWORD=""
#CODE_SIGNING_IDENTITY to sign the application and archive with.
#export CODE_SIGNING_IDENTITY="iPhone Distribution: Some Org (DA123456)"
#PROFILE_UUID if not retrieving the profile from Apple developer site. And using one that is already included
#export PROFILE_UUID="360b961d-e972-492d-8743-83fd70fba42c"
#PROVISIONING_PROFILE_NAME for export profile (if using RETRIEVE_PROFILE this must match the apple developer portal name)
#export PROVISIONING_PROFILE_NAME="Some App Ad Hoc"
#RETRIEVE_PROFILES If you want to retrieve the newest provisioning profiles from the Apple Developer portal.
#export RETRIEVE_PROFILE=True
#export APPLE_DEVELOPER_USERNAME="[email protected]"
#export APPLE_DEVELOPER_PASSWORD="apple_id_password"
#export APPLE_DEVELOPER_TEAM="DEVELOPER_TEAM_ID"
#COCOAPODS If you want to use cocoapods.
#export COCOAPODS=True
#INCREASE_BUILD_NUMBER If you want to manually increase the app build number.
#export INCREASE_BUILD_NUMBER=True
#xcodebuild required parameters
export XCWORKSPACE="SomeApp.xcworkspace"
export XCSCHEME="SomeApp"
export BUILD_CONFIGURATION="Release"
#COLORIZED_OUTPUT if we want to show colorized output with xcpretty
#export COLORIZED_OUTPUT=True
#TEST If we want to run tests after the build.
#export TEST=True
#EXPORT_IPA If we want to export an IPA file from the build
#export EXPORT_IPA=True
#CRASHLYTICS If we want to submit a build to Crashlytics Beta
#export CRASHLYTICS=True
#export CRASHLYTICS_FRAMEWORK_PATH="path/to/Crashlytics.framework"
#export CRASHLYTICS_API_KEY="token"
#export CRASHLYTICS_BUILD_SECRET="token"
#export CRASHLYTICS_EMAILS="[email protected],[email protected]"
#export CRASHLYTICS_NOTES_PATH="path/to/Notes.txt"
#export CRASHLYTICS_GROUP_ALIASES="list,list2"
#export CRASHLYTICS_NOTIFICATIONS="YES"