fastlane-plugin-lambdatest 0.1.6 → 0.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 501c228df465d9f98a2f0d2b910c4ae7e33e99c34588b424f3a1e82ccc25e408
|
4
|
+
data.tar.gz: c25660a6bfd570b35147278f622bdf497440a82da0463ef2cb37055058c8fb92
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e67aeaac7036975149b7cec1cdef6316a552dea5a1c4abdc0f746b119ca75ce5c15d64d3a3cce4ce891f7d0d714bcd9777e005da0119451ccbb82bf0b6e5c346
|
7
|
+
data.tar.gz: 80e28d670f082e156c8bc530bf9aa92b7a22cac1a11461058592d7cfb29ac9bf8e761856a3c9cc38a3a652daf88590ae386610056ebe43181a8a4113750b4057
|
@@ -9,7 +9,7 @@ module Fastlane
|
|
9
9
|
end
|
10
10
|
class UploadToLambdatestAction < Action
|
11
11
|
|
12
|
-
SUPPORTED_EXTENSIONS = ["apk", "ipa", "aab"]
|
12
|
+
SUPPORTED_EXTENSIONS = ["apk", "ipa", "aab", "zip"]
|
13
13
|
|
14
14
|
def self.run(params)
|
15
15
|
lt_username = params[:lt_username] # Required
|
@@ -23,7 +23,7 @@ module Fastlane
|
|
23
23
|
|
24
24
|
api_endpoint = self.get_api_endpoint(is_real_device)
|
25
25
|
|
26
|
-
self.validate_file_path(file_path)
|
26
|
+
self.validate_file_path(file_path, is_real_device)
|
27
27
|
|
28
28
|
UI.message("Started Uploading app to Lambdatest...")
|
29
29
|
|
@@ -50,9 +50,12 @@ module Fastlane
|
|
50
50
|
end
|
51
51
|
|
52
52
|
# Validating file_path and extension.
|
53
|
-
def self.validate_file_path(file_path)
|
53
|
+
def self.validate_file_path(file_path, is_real_device)
|
54
54
|
UI.user_error!("file not found at '#{file_path}' ❌ .") unless File.exist?(file_path)
|
55
55
|
file_path_parts = file_path.split(".")
|
56
|
+
if file_path_parts.last == "zip" && is_real_device
|
57
|
+
UI.user_error!("Uploading zip files is only supported for virtual devices. Please set is_real_device to false.")
|
58
|
+
end
|
56
59
|
unless file_path_parts.length > 1 && SUPPORTED_EXTENSIONS.include?(file_path_parts.last)
|
57
60
|
UI.user_error!("Invalid file extension, only files with extensions " + SUPPORTED_EXTENSIONS.to_s + " are allowed to be uploaded.")
|
58
61
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane-plugin-lambdatest
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- LambdaTest
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-08-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rest-client
|