luna-binary-uploader 0.1.7 → 0.1.8
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 +4 -4
- data/bin/lbu +2 -1
- data/lib/luna/binary/build.rb +20 -8
- data/lib/luna/binary/common/common.rb +1 -14
- data/lib/luna/binary/update.rb +11 -1
- data/lib/luna/binary/uploader/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8eb081de584f9444708a84d7af3953965872eae7254aaa34d1744b7f635778fc
|
4
|
+
data.tar.gz: db0c4458a6b710f0fa9e5973d6b89c84d8bebebf79511df7cda1eda1eff05d08
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 90ebddb758d1deaf84b6d9681fd27b3adb9027859c55e53f0aaed7020c7d171fe4ab8fdad1066f358c1fd49054e7c7ddfc63ed8c3258e7c1504e8f8c9e77d717
|
7
|
+
data.tar.gz: 5c3f759c39fbd1f09009b4002bdfb2fd2eec238b76c9e9659f0a1d25711d4bad4ee912683925ffe939c05f399e8daaf2a92538aea37fda0b8c46c8cccfb773d7
|
data/bin/lbu
CHANGED
@@ -6,6 +6,7 @@ require "luna/binary/delete"
|
|
6
6
|
require "luna/binary/analysis"
|
7
7
|
require "luna/binary/refresh"
|
8
8
|
require "luna/binary/build"
|
9
|
+
require "luna/binary/update"
|
9
10
|
require 'gli'
|
10
11
|
|
11
12
|
# You can add fixtures and/or initialization code here to make experimenting
|
@@ -133,7 +134,7 @@ class App
|
|
133
134
|
arg_name '参数:1.二进制路径(可以不传默认为当前目录下的/temp-luna-uploader/merged)'
|
134
135
|
command :update do |c|
|
135
136
|
c.action do |global_options,options,args|
|
136
|
-
obj = Luna::Binary::
|
137
|
+
obj = Luna::Binary::Update.new()
|
137
138
|
if args[0] != nil
|
138
139
|
obj.binary_path = args[0]
|
139
140
|
else
|
data/lib/luna/binary/build.rb
CHANGED
@@ -29,26 +29,38 @@ module Luna
|
|
29
29
|
command("rm -rf #{Dir.pwd}/Pods")
|
30
30
|
isNext = command("pod install")
|
31
31
|
Luna::Binary::Common.instance.deleteDirectory(binary_path_arm)
|
32
|
-
|
32
|
+
tempLunaUploaderPath = Luna::Binary::Common.instance.tempLunaUploaderPath
|
33
|
+
isNext = command("xcodebuild -workspace #{workspace} -scheme #{scheme} -configuration Debug -derivedDataPath '#{tempLunaUploaderPath}/build/arm/temp'") if isNext == true
|
34
|
+
isNext = command("cp -r #{tempLunaUploaderPath}/build/arm/temp/Build/Products #{binary_path_arm}") if isNext == true #本可以用CONFIGURATION_BUILD_DIR直接指定结果文件夹,结果经常性的编译报错
|
33
35
|
Luna::Binary::Common.instance.deleteDirectory(binary_path_x86)
|
34
|
-
isNext = command("xcodebuild -workspace #{workspace} -scheme #{scheme} -configuration Debug -derivedDataPath '#{
|
36
|
+
isNext = command("xcodebuild -workspace #{workspace} -scheme #{scheme} -configuration Debug -derivedDataPath '#{tempLunaUploaderPath}/build/x86/temp' -destination 'platform=iOS Simulator,name=iPhone 11'") if isNext == true
|
37
|
+
isNext = command("cp -r #{tempLunaUploaderPath}/build/x86/temp/Build/Products #{binary_path_x86}") if isNext == true
|
35
38
|
mergeFrameWorks(binary_path_arm, binary_path_x86) if isNext == true
|
36
39
|
end
|
37
40
|
|
38
41
|
def mergeFrameWorks(binary_path_arm, binary_path_x86)
|
39
42
|
Luna::Binary::Common.instance.deleteDirectory(binary_path_merged)
|
40
43
|
dedupingMapper = {}
|
44
|
+
failList = []
|
41
45
|
lockfile.pod_names.each { |item|
|
42
46
|
if item["/"] == nil && dedupingMapper[item] == nil
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
47
|
+
begin
|
48
|
+
Pod::UserInterface.puts item.yellow
|
49
|
+
armPath = findFramework(item,binary_path_arm)
|
50
|
+
x86Path = findFramework(item,binary_path_x86)
|
51
|
+
mergeFrameWork(item, armPath, x86Path) if armPath != nil && x86Path != nil
|
52
|
+
dedupingMapper[item] = item
|
53
|
+
rescue => exception
|
54
|
+
failList << "#{item} exception : #{exception}"
|
55
|
+
ensure
|
56
|
+
|
57
|
+
end
|
58
|
+
|
48
59
|
end
|
49
60
|
}
|
50
61
|
|
51
62
|
Pod::UserInterface.puts "合并后的framework的路径为:#{binary_path_merged}".yellow
|
63
|
+
Pod::UserInterface.puts "失败的名单为:#{failList}".yellow
|
52
64
|
end
|
53
65
|
|
54
66
|
def lockfile
|
@@ -66,7 +78,7 @@ module Luna
|
|
66
78
|
end
|
67
79
|
|
68
80
|
def findFramework(moduleName, binary_path)
|
69
|
-
pathArr = Dir.glob("#{binary_path}/**/#{moduleName}.framework")
|
81
|
+
pathArr = Dir.glob("#{binary_path}/**/#{moduleName.sub('-', '_')}.framework")
|
70
82
|
if pathArr != nil
|
71
83
|
return pathArr.first
|
72
84
|
else
|
@@ -90,8 +90,7 @@ module Luna
|
|
90
90
|
end
|
91
91
|
|
92
92
|
def lockfile
|
93
|
-
@lockfile ||=
|
94
|
-
Pod::Lockfile.from_file(podFilePath) if podFilePath.exist?
|
93
|
+
@lockfile ||= Pod::Lockfile.from_file(podFilePath) if podFilePath.exist?
|
95
94
|
end
|
96
95
|
|
97
96
|
def use_framework_list
|
@@ -108,18 +107,6 @@ module Luna
|
|
108
107
|
end
|
109
108
|
return list
|
110
109
|
end
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
end
|
117
|
-
|
118
|
-
# def pushInRepo(name, version)
|
119
|
-
|
120
|
-
|
121
|
-
# end
|
122
|
-
|
123
110
|
end
|
124
111
|
end
|
125
112
|
end
|
data/lib/luna/binary/update.rb
CHANGED
@@ -14,6 +14,7 @@ module Luna
|
|
14
14
|
Luna::Binary::Common.instance.deleteDirectory("#{rootPath}")
|
15
15
|
system "mkdir -p #{rootPath};"
|
16
16
|
failList = []
|
17
|
+
successList = []
|
17
18
|
dependenciesMapper = lockfile.dependencies.map { |item| [item.name, item]}.to_h
|
18
19
|
spec_repo_binary.each { |k,v|
|
19
20
|
if request_result_hash[k] == nil || request_result_hash[k].include?(v) == false
|
@@ -34,7 +35,16 @@ module Luna
|
|
34
35
|
tag = lockItem.external_source['tag'.parameterize.underscore.to_sym]
|
35
36
|
path = lockItem.external_source['path'.parameterize.underscore.to_sym]
|
36
37
|
p "#{moduleName} git: #{gitURL} tag: #{tag} path: #{path}"
|
37
|
-
if
|
38
|
+
if path
|
39
|
+
pathArr = Dir.glob("#{Dir.pwd}/#{path}/**/#{moduleName}.podspec")
|
40
|
+
if pathArr
|
41
|
+
uploader = Luna::Binary::Uploader::SingleUploader.new(moduleName, "", "", binary_path)
|
42
|
+
uploader.specification=Pod::Specification.from_file(pathArr.first)
|
43
|
+
uploader.specificationWork
|
44
|
+
localPathMapper[moduleName] = pathArr.first
|
45
|
+
end
|
46
|
+
|
47
|
+
elsif gitURL && tag && !moduleName["/"]
|
38
48
|
uploader = Luna::Binary::Uploader::SingleUploader.new(moduleName, gitURL, tag, binary_path)
|
39
49
|
uploader.specificationWork
|
40
50
|
successList << uploader
|