fastlane-plugin-fastci 0.0.11 → 0.0.12
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: beca80c5ed38df0f56430ea53056399285eaf4eb465c7918cca00dc6a0e65d75
|
|
4
|
+
data.tar.gz: b22ec9b71c62abc98c57860e140781f5cf3753d86498e696b68c3a6e0a131fe6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 81c9c0f0ff28e37828515264276656128d3e14c8eb4c4b99add923a55e95e8876c59a1376ed4fde9951b4cf680aeff73ba4a25c51226c0208aa7e8c92904068a
|
|
7
|
+
data.tar.gz: 468dfc9af7d196b7c3d5360881aefae651a58ec2f240d9233c0063c20d2b91c60e04ef39e6a42d66cfdb2ea3e494f44690ace64239558eb60223fec53f4ff3d6
|
|
@@ -170,7 +170,10 @@ module Fastlane
|
|
|
170
170
|
|
|
171
171
|
# 代码分析
|
|
172
172
|
if is_analyze_swiftlint && gym_method != "app-store"
|
|
173
|
-
analyze_swiftlint(
|
|
173
|
+
other_action.analyze_swiftlint(
|
|
174
|
+
is_from_package: true,
|
|
175
|
+
configuration: configuration
|
|
176
|
+
)
|
|
174
177
|
# 结果复制到桌面
|
|
175
178
|
FileUtils.cp(SWIFTLINT_HTML_FILE, target_path)
|
|
176
179
|
FileUtils.cp(SWIFTLINT_ANALYZE_HTML_FILE, target_path)
|
|
@@ -181,7 +184,9 @@ module Fastlane
|
|
|
181
184
|
|
|
182
185
|
# 重复代码检查
|
|
183
186
|
if is_detect_duplicity_code && gym_method != "app-store"
|
|
184
|
-
detect_code_duplicity(
|
|
187
|
+
other_action.detect_code_duplicity(
|
|
188
|
+
is_all: true
|
|
189
|
+
)
|
|
185
190
|
# 结果复制到桌面
|
|
186
191
|
FileUtils.cp(DUPLICITY_CODE_HTML_FILE, target_path)
|
|
187
192
|
UI.message("*************| 重复代码检查完成 |*************")
|
|
@@ -191,7 +196,7 @@ module Fastlane
|
|
|
191
196
|
|
|
192
197
|
# 无用代码检查
|
|
193
198
|
if is_detect_unused_code && gym_method != "app-store"
|
|
194
|
-
|
|
199
|
+
other_action.detect_unused_code(
|
|
195
200
|
scheme: scheme,
|
|
196
201
|
is_from_package: true,
|
|
197
202
|
configuration: configuration
|
|
@@ -205,7 +210,7 @@ module Fastlane
|
|
|
205
210
|
|
|
206
211
|
# 无用图片检查
|
|
207
212
|
if is_detect_unused_image && gym_method != "app-store"
|
|
208
|
-
|
|
213
|
+
other_action.detect_unused_image()
|
|
209
214
|
# 结果复制到桌面
|
|
210
215
|
FileUtils.cp(Constants.UNUSED_IMAGE_HTML_FILE, target_path)
|
|
211
216
|
UI.message("*************| 无用图片检查完成 |*************")
|