Class: Fastlane::Actions::GetBuildNumberAction
Constant Summary
Fastlane::Action::AVAILABLE_CATEGORIES
Class Method Summary
collapse
action_name, author, lane_context, method_missing, other_action, return_value, sample_return_value, sh, step_text
Class Method Details
.authors ⇒ Object
74
75
76
|
# File 'lib/fastlane/actions/get_build_number.rb', line 74
def self.authors
["Liquidsoul"]
end
|
.available_options ⇒ Object
55
56
57
58
59
60
61
62
63
64
65
66
|
# File 'lib/fastlane/actions/get_build_number.rb', line 55
def self.available_options
[
FastlaneCore::ConfigItem.new(key: :xcodeproj,
env_name: "FL_BUILD_NUMBER_PROJECT",
description: "optional, you must specify the path to your main Xcode project if it is not in the project root directory",
optional: true,
verify_block: proc do |value|
UI.user_error!("Please pass the path to the project, not the workspace") if value.end_with? ".xcworkspace"
UI.user_error!("Could not find Xcode project") if !File.exist?(value) and !Helper.is_test?
end)
]
end
|
.category ⇒ Object
88
89
90
|
# File 'lib/fastlane/actions/get_build_number.rb', line 88
def self.category
:project
end
|
.description ⇒ Object
43
44
45
|
# File 'lib/fastlane/actions/get_build_number.rb', line 43
def self.description
"Get the build number of your project"
end
|
.details ⇒ Object
47
48
49
50
51
52
53
|
# File 'lib/fastlane/actions/get_build_number.rb', line 47
def self.details
[
"This action will return the current build number set on your project.",
"You first have to set up your Xcode project, if you haven't done it already:",
"https://developer.apple.com/library/ios/qa/qa1827/_index.html"
].join(' ')
end
|
.example_code ⇒ Object
82
83
84
85
86
|
# File 'lib/fastlane/actions/get_build_number.rb', line 82
def self.example_code
[
'build_number = get_build_number(xcodeproj: "Project.xcodeproj")'
]
end
|
.is_supported?(platform) ⇒ Boolean
78
79
80
|
# File 'lib/fastlane/actions/get_build_number.rb', line 78
def self.is_supported?(platform)
[:ios, :mac].include? platform
end
|
.output ⇒ Object
68
69
70
71
72
|
# File 'lib/fastlane/actions/get_build_number.rb', line 68
def self.output
[
['BUILD_NUMBER', 'The build number']
]
end
|
.run(params) ⇒ Object
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
|
# File 'lib/fastlane/actions/get_build_number.rb', line 6
def self.run(params)
folder = params[:xcodeproj] ? File.join(params[:xcodeproj], '..') : '.'
command_prefix = [
'cd',
File.expand_path(folder).shellescape,
'&&'
].join(' ')
command = [
command_prefix,
'agvtool',
'what-version',
'-terse'
].join(' ')
if Helper.test?
Actions.lane_context[SharedValues::BUILD_NUMBER] = command
else
build_number = (Actions.sh command).split("\n").last.strip
Actions.lane_context[SharedValues::BUILD_NUMBER] = build_number
end
return build_number
rescue => ex
UI.error('Make sure to follow the steps to setup your Xcode project: https://developer.apple.com/library/ios/qa/qa1827/_index.html')
raise ex
end
|