fastlane-plugin-aws_device_farm 0.1.4.pre.alpha.pre.12 → 0.1.4.pre.alpha.pre.14
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: feb602b6f6a311251645136c53f865c890480eb4
|
4
|
+
data.tar.gz: 2eb0ba00f6dac2615cd6b8d1cddcb89d95758365
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f6d34508bc6fa82b59855a5969698641cccd34139553fda25c5102484887ab5f08c6b7bfb022284eba0d6b43ba7e7257e566d3efe682878ee6d494a52c24a276
|
7
|
+
data.tar.gz: 4386c393798baa635499ee420303266ca6bfd57563e84650029d6a58734ab22cf3aa077ce7024a29a6b87334dac8b6a3812d124483737eec2ea0a03ca071e73f
|
@@ -3,7 +3,7 @@ module Fastlane
|
|
3
3
|
class AwsDeviceFarmPackageAction < Action
|
4
4
|
def self.run(params)
|
5
5
|
FileUtils.rm_rf "#{File.expand_path(params[:derrived_data_path])}/packages"
|
6
|
-
Dir["#{File.expand_path(params[:derrived_data_path])}/Build/Products
|
6
|
+
Dir["#{File.expand_path(params[:derrived_data_path])}/Build/Products/#{params[:configuration]}-iphoneos/*.app"].each do |app|
|
7
7
|
if app.include? 'Runner'
|
8
8
|
|
9
9
|
FileUtils.mkdir_p "#{File.expand_path(params[:derrived_data_path])}/packages/runner/Payload"
|
@@ -43,6 +43,14 @@ module Fastlane
|
|
43
43
|
description: 'Derrived Data Path',
|
44
44
|
is_string: true,
|
45
45
|
optional: false
|
46
|
+
),
|
47
|
+
FastlaneCore::ConfigItem.new(
|
48
|
+
key: :configuration,
|
49
|
+
env_name: 'FL_AWS_DEVICE_FARM_CONFIGURATION',
|
50
|
+
description: 'Configuration',
|
51
|
+
is_string: true,
|
52
|
+
optional: true,
|
53
|
+
default_value: "Development"
|
46
54
|
)
|
47
55
|
]
|
48
56
|
end
|