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: a4161c59c27837cca67ca80599a10b40f40b9b4082767e9a84e97ffd98fdfb45
4
- data.tar.gz: 1578b038a477b2dc96be21fe3e7e013aa77eed11055aa4859e79e133cff95643
3
+ metadata.gz: 501c228df465d9f98a2f0d2b910c4ae7e33e99c34588b424f3a1e82ccc25e408
4
+ data.tar.gz: c25660a6bfd570b35147278f622bdf497440a82da0463ef2cb37055058c8fb92
5
5
  SHA512:
6
- metadata.gz: 79288b6688fd2162065dd9c74b8a0b900b847bb6523417537ed88006177581c371b9ecf6c3669f9851a9c417ee73990002117f8f70712126b8d335455588b0d2
7
- data.tar.gz: 5cc8128429576c44a1ffc0434e0412eaa043e25d3cd7d76a451fff93e65bb9bdd143fb4c00e43bdda8854d8fe0431db3760a58a6cb6c676b34fac6139b0e443a
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
@@ -35,6 +35,10 @@ module Fastlane
35
35
  payload[:ios_keychain_enabled] = ios_keychain_enabled
36
36
  end
37
37
 
38
+ if File.extname(file_path).downcase == ".zip"
39
+ payload[:type] = 4
40
+ end
41
+
38
42
  headers = {
39
43
  "User-Agent" => "fastlane_plugin_lambdatest"
40
44
  }
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Lambdatest
3
- VERSION = "0.1.6"
3
+ VERSION = "0.1.7"
4
4
  end
5
5
  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.6
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-07-14 00:00:00.000000000 Z
11
+ date: 2025-08-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rest-client