fastlane-plugin-aws_device_farm 0.3.20 → 0.3.21
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
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7b4646c951642040f2cf1734a59d6ad9a4737c26ae317040569c493f373b9f27
|
4
|
+
data.tar.gz: '039d262a736b71ccf6554ac861b4eac00e3dfb275f5d3527986fde5206fe90b3'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ef29d0f1eaabb7870350f1cf47e731514b6e6e1592a8c7203d449f6e2ea8147cb1f7498c66e7a04e0fee787e7327cb44a71b59bf3faef2904b97aaea19f5c018
|
7
|
+
data.tar.gz: abfa8684f70ec4bc7fffd04acd6403de6c22ce86e2650a8e2b0763eed70d70ddbb8b858fecd1d0917156b90696bafecdcae0fcf000999fefc5d700c351cdfa53
|
@@ -85,12 +85,9 @@ module Fastlane
|
|
85
85
|
|
86
86
|
run
|
87
87
|
end
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
configuration[:network_profile_arn] = params[:network_profile_arn]
|
92
|
-
end
|
93
|
-
|
88
|
+
|
89
|
+
|
90
|
+
|
94
91
|
# rubocop:enable Metrics/BlockNesting
|
95
92
|
#
|
96
93
|
#####################################################
|
@@ -236,7 +233,7 @@ module Fastlane
|
|
236
233
|
default_value: nil,
|
237
234
|
optional: false,
|
238
235
|
is_string: true
|
239
|
-
),
|
236
|
+
),
|
240
237
|
FastlaneCore::ConfigItem.new(
|
241
238
|
key: :wait_for_completion,
|
242
239
|
env_name: 'FL_AWS_DEVICE_FARM_WAIT_FOR_COMPLETION',
|
@@ -444,9 +441,13 @@ module Fastlane
|
|
444
441
|
configuration_hash = {
|
445
442
|
billing_method: params[:billing_method],
|
446
443
|
locale: params[:locale],
|
447
|
-
network_profile_arn: params[:network_profile_arn]
|
448
444
|
}
|
449
445
|
|
446
|
+
# Get the network profile from params if value is provided
|
447
|
+
if params[:network_profile_arn]
|
448
|
+
configuration_hash[:network_profile_arn] = params[:network_profile_arn]
|
449
|
+
end
|
450
|
+
|
450
451
|
@client.schedule_run({
|
451
452
|
name: name,
|
452
453
|
project_arn: project.arn,
|
@@ -457,6 +458,7 @@ module Fastlane
|
|
457
458
|
}).run
|
458
459
|
end
|
459
460
|
|
461
|
+
|
460
462
|
def self.fetch_run_status(run)
|
461
463
|
@client.get_run({
|
462
464
|
arn: run.arn
|