fastlane 2.211.0 → 2.212.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +96 -96
- data/deliver/lib/deliver/app_screenshot.rb +1 -0
- data/deliver/lib/deliver/runner.rb +2 -6
- data/fastlane/lib/fastlane/actions/docs/capture_android_screenshots.md +19 -2
- data/fastlane/lib/fastlane/actions/pod_lib_lint.rb +1 -1
- data/fastlane/lib/fastlane/actions/update_project_provisioning.rb +1 -1
- data/fastlane/lib/fastlane/actions/xcodes.rb +17 -2
- data/fastlane/lib/fastlane/fast_file.rb +18 -5
- data/fastlane/lib/fastlane/features.rb +3 -0
- data/fastlane/lib/fastlane/version.rb +1 -1
- data/fastlane/swift/Actions.swift +1 -1
- data/fastlane/swift/Appfile.swift +1 -1
- data/fastlane/swift/ArgumentProcessor.swift +1 -1
- data/fastlane/swift/Atomic.swift +1 -1
- data/fastlane/swift/ControlCommand.swift +1 -1
- data/fastlane/swift/Deliverfile.swift +2 -2
- data/fastlane/swift/DeliverfileProtocol.swift +2 -2
- data/fastlane/swift/Fastlane.swift +29 -5
- data/fastlane/swift/Gymfile.swift +2 -2
- data/fastlane/swift/GymfileProtocol.swift +6 -2
- data/fastlane/swift/LaneFileProtocol.swift +1 -1
- data/fastlane/swift/MainProcess.swift +1 -1
- data/fastlane/swift/Matchfile.swift +2 -2
- data/fastlane/swift/MatchfileProtocol.swift +3 -3
- data/fastlane/swift/OptionalConfigValue.swift +1 -1
- data/fastlane/swift/Plugins.swift +1 -1
- data/fastlane/swift/Precheckfile.swift +2 -2
- data/fastlane/swift/PrecheckfileProtocol.swift +2 -2
- data/fastlane/swift/RubyCommand.swift +1 -1
- data/fastlane/swift/RubyCommandable.swift +1 -1
- data/fastlane/swift/Runner.swift +1 -1
- data/fastlane/swift/RunnerArgument.swift +1 -1
- data/fastlane/swift/Scanfile.swift +2 -2
- data/fastlane/swift/ScanfileProtocol.swift +6 -2
- data/fastlane/swift/Screengrabfile.swift +2 -2
- data/fastlane/swift/ScreengrabfileProtocol.swift +2 -2
- data/fastlane/swift/Snapshotfile.swift +2 -2
- data/fastlane/swift/SnapshotfileProtocol.swift +2 -2
- data/fastlane/swift/SocketClient.swift +1 -1
- data/fastlane/swift/SocketClientDelegateProtocol.swift +1 -1
- data/fastlane/swift/SocketResponse.swift +1 -1
- data/fastlane/swift/formatting/Brewfile.lock.json +26 -18
- data/fastlane/swift/main.swift +1 -1
- data/fastlane_core/lib/fastlane_core/.project.rb.swp +0 -0
- data/fastlane_core/lib/fastlane_core/cert_checker.rb +9 -2
- data/fastlane_core/lib/fastlane_core/ui/implementations/shell.rb +4 -2
- data/gym/lib/gym/.code_signing_mapping.rb.swp +0 -0
- data/gym/lib/gym/generators/build_command_generator.rb +1 -0
- data/gym/lib/gym/options.rb +7 -0
- data/match/lib/match/importer.rb +4 -0
- data/match/lib/match/module.rb +1 -1
- data/scan/lib/scan/options.rb +5 -0
- data/scan/lib/scan/test_command_generator.rb +6 -1
- data/spaceship/lib/spaceship/connect_api/models/app_info_localization.rb +5 -0
- data/spaceship/lib/spaceship/connect_api/models/app_store_version_localization.rb +17 -0
- data/spaceship/lib/spaceship/connect_api/models/build_bundle.rb +9 -0
- data/spaceship/lib/spaceship/connect_api/models/build_bundle_file_sizes.rb +34 -0
- data/spaceship/lib/spaceship/connect_api/models/device.rb +44 -4
- data/spaceship/lib/spaceship/connect_api/provisioning/provisioning.rb +19 -0
- data/spaceship/lib/spaceship/connect_api/testflight/testflight.rb +9 -0
- data/spaceship/lib/spaceship/connect_api.rb +1 -0
- data/spaceship/lib/spaceship/errors.rb +34 -0
- metadata +25 -22
@@ -1,5 +1,5 @@
|
|
1
1
|
// Fastlane.swift
|
2
|
-
// Copyright (c)
|
2
|
+
// Copyright (c) 2023 FastlaneTools
|
3
3
|
|
4
4
|
import Foundation
|
5
5
|
/**
|
@@ -1318,6 +1318,7 @@ public func buildAndroidApp(task: OptionalConfigValue<String?> = .fastlaneDefaul
|
|
1318
1318
|
- xcconfig: Use an extra XCCONFIG file to build your app
|
1319
1319
|
- suppressXcodeOutput: Suppress the output of xcodebuild to stdout. Output is still saved in buildlog_path
|
1320
1320
|
- xcodebuildFormatter: xcodebuild formatter to use (ex: 'xcbeautify', 'xcbeautify --quieter', 'xcpretty', 'xcpretty -test'). Use empty string (ex: '') to disable any formatter (More information: https://docs.fastlane.tools/best-practices/xcodebuild-formatters/)
|
1321
|
+
- buildTimingSummary: Create a build timing summary
|
1321
1322
|
- disableXcpretty: **DEPRECATED!** Use `xcodebuild_formatter: ''` instead - Disable xcpretty formatting of build output
|
1322
1323
|
- xcprettyTestFormat: Use the test (RSpec style) format for build output
|
1323
1324
|
- xcprettyFormatter: A custom xcpretty formatter to use
|
@@ -1372,6 +1373,7 @@ public func buildAndroidApp(task: OptionalConfigValue<String?> = .fastlaneDefaul
|
|
1372
1373
|
xcconfig: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
1373
1374
|
suppressXcodeOutput: OptionalConfigValue<Bool?> = .fastlaneDefault(nil),
|
1374
1375
|
xcodebuildFormatter: String = "xcbeautify",
|
1376
|
+
buildTimingSummary: OptionalConfigValue<Bool> = .fastlaneDefault(false),
|
1375
1377
|
disableXcpretty: OptionalConfigValue<Bool?> = .fastlaneDefault(nil),
|
1376
1378
|
xcprettyTestFormat: OptionalConfigValue<Bool?> = .fastlaneDefault(nil),
|
1377
1379
|
xcprettyFormatter: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
@@ -1422,6 +1424,7 @@ public func buildAndroidApp(task: OptionalConfigValue<String?> = .fastlaneDefaul
|
|
1422
1424
|
let xcconfigArg = xcconfig.asRubyArgument(name: "xcconfig", type: nil)
|
1423
1425
|
let suppressXcodeOutputArg = suppressXcodeOutput.asRubyArgument(name: "suppress_xcode_output", type: nil)
|
1424
1426
|
let xcodebuildFormatterArg = RubyCommand.Argument(name: "xcodebuild_formatter", value: xcodebuildFormatter, type: nil)
|
1427
|
+
let buildTimingSummaryArg = buildTimingSummary.asRubyArgument(name: "build_timing_summary", type: nil)
|
1425
1428
|
let disableXcprettyArg = disableXcpretty.asRubyArgument(name: "disable_xcpretty", type: nil)
|
1426
1429
|
let xcprettyTestFormatArg = xcprettyTestFormat.asRubyArgument(name: "xcpretty_test_format", type: nil)
|
1427
1430
|
let xcprettyFormatterArg = xcprettyFormatter.asRubyArgument(name: "xcpretty_formatter", type: nil)
|
@@ -1471,6 +1474,7 @@ public func buildAndroidApp(task: OptionalConfigValue<String?> = .fastlaneDefaul
|
|
1471
1474
|
xcconfigArg,
|
1472
1475
|
suppressXcodeOutputArg,
|
1473
1476
|
xcodebuildFormatterArg,
|
1477
|
+
buildTimingSummaryArg,
|
1474
1478
|
disableXcprettyArg,
|
1475
1479
|
xcprettyTestFormatArg,
|
1476
1480
|
xcprettyFormatterArg,
|
@@ -1528,6 +1532,7 @@ public func buildAndroidApp(task: OptionalConfigValue<String?> = .fastlaneDefaul
|
|
1528
1532
|
- xcconfig: Use an extra XCCONFIG file to build your app
|
1529
1533
|
- suppressXcodeOutput: Suppress the output of xcodebuild to stdout. Output is still saved in buildlog_path
|
1530
1534
|
- xcodebuildFormatter: xcodebuild formatter to use (ex: 'xcbeautify', 'xcbeautify --quieter', 'xcpretty', 'xcpretty -test'). Use empty string (ex: '') to disable any formatter (More information: https://docs.fastlane.tools/best-practices/xcodebuild-formatters/)
|
1535
|
+
- buildTimingSummary: Create a build timing summary
|
1531
1536
|
- disableXcpretty: **DEPRECATED!** Use `xcodebuild_formatter: ''` instead - Disable xcpretty formatting of build output
|
1532
1537
|
- xcprettyTestFormat: Use the test (RSpec style) format for build output
|
1533
1538
|
- xcprettyFormatter: A custom xcpretty formatter to use
|
@@ -1579,6 +1584,7 @@ public func buildAndroidApp(task: OptionalConfigValue<String?> = .fastlaneDefaul
|
|
1579
1584
|
xcconfig: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
1580
1585
|
suppressXcodeOutput: OptionalConfigValue<Bool?> = .fastlaneDefault(nil),
|
1581
1586
|
xcodebuildFormatter: String = "xcbeautify",
|
1587
|
+
buildTimingSummary: OptionalConfigValue<Bool> = .fastlaneDefault(false),
|
1582
1588
|
disableXcpretty: OptionalConfigValue<Bool?> = .fastlaneDefault(nil),
|
1583
1589
|
xcprettyTestFormat: OptionalConfigValue<Bool?> = .fastlaneDefault(nil),
|
1584
1590
|
xcprettyFormatter: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
@@ -1626,6 +1632,7 @@ public func buildAndroidApp(task: OptionalConfigValue<String?> = .fastlaneDefaul
|
|
1626
1632
|
let xcconfigArg = xcconfig.asRubyArgument(name: "xcconfig", type: nil)
|
1627
1633
|
let suppressXcodeOutputArg = suppressXcodeOutput.asRubyArgument(name: "suppress_xcode_output", type: nil)
|
1628
1634
|
let xcodebuildFormatterArg = RubyCommand.Argument(name: "xcodebuild_formatter", value: xcodebuildFormatter, type: nil)
|
1635
|
+
let buildTimingSummaryArg = buildTimingSummary.asRubyArgument(name: "build_timing_summary", type: nil)
|
1629
1636
|
let disableXcprettyArg = disableXcpretty.asRubyArgument(name: "disable_xcpretty", type: nil)
|
1630
1637
|
let xcprettyTestFormatArg = xcprettyTestFormat.asRubyArgument(name: "xcpretty_test_format", type: nil)
|
1631
1638
|
let xcprettyFormatterArg = xcprettyFormatter.asRubyArgument(name: "xcpretty_formatter", type: nil)
|
@@ -1672,6 +1679,7 @@ public func buildAndroidApp(task: OptionalConfigValue<String?> = .fastlaneDefaul
|
|
1672
1679
|
xcconfigArg,
|
1673
1680
|
suppressXcodeOutputArg,
|
1674
1681
|
xcodebuildFormatterArg,
|
1682
|
+
buildTimingSummaryArg,
|
1675
1683
|
disableXcprettyArg,
|
1676
1684
|
xcprettyTestFormatArg,
|
1677
1685
|
xcprettyFormatterArg,
|
@@ -1730,6 +1738,7 @@ public func buildAndroidApp(task: OptionalConfigValue<String?> = .fastlaneDefaul
|
|
1730
1738
|
- xcconfig: Use an extra XCCONFIG file to build your app
|
1731
1739
|
- suppressXcodeOutput: Suppress the output of xcodebuild to stdout. Output is still saved in buildlog_path
|
1732
1740
|
- xcodebuildFormatter: xcodebuild formatter to use (ex: 'xcbeautify', 'xcbeautify --quieter', 'xcpretty', 'xcpretty -test'). Use empty string (ex: '') to disable any formatter (More information: https://docs.fastlane.tools/best-practices/xcodebuild-formatters/)
|
1741
|
+
- buildTimingSummary: Create a build timing summary
|
1733
1742
|
- disableXcpretty: **DEPRECATED!** Use `xcodebuild_formatter: ''` instead - Disable xcpretty formatting of build output
|
1734
1743
|
- xcprettyTestFormat: Use the test (RSpec style) format for build output
|
1735
1744
|
- xcprettyFormatter: A custom xcpretty formatter to use
|
@@ -1782,6 +1791,7 @@ public func buildAndroidApp(task: OptionalConfigValue<String?> = .fastlaneDefaul
|
|
1782
1791
|
xcconfig: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
1783
1792
|
suppressXcodeOutput: OptionalConfigValue<Bool?> = .fastlaneDefault(nil),
|
1784
1793
|
xcodebuildFormatter: String = "xcbeautify",
|
1794
|
+
buildTimingSummary: OptionalConfigValue<Bool> = .fastlaneDefault(false),
|
1785
1795
|
disableXcpretty: OptionalConfigValue<Bool?> = .fastlaneDefault(nil),
|
1786
1796
|
xcprettyTestFormat: OptionalConfigValue<Bool?> = .fastlaneDefault(nil),
|
1787
1797
|
xcprettyFormatter: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
@@ -1830,6 +1840,7 @@ public func buildAndroidApp(task: OptionalConfigValue<String?> = .fastlaneDefaul
|
|
1830
1840
|
let xcconfigArg = xcconfig.asRubyArgument(name: "xcconfig", type: nil)
|
1831
1841
|
let suppressXcodeOutputArg = suppressXcodeOutput.asRubyArgument(name: "suppress_xcode_output", type: nil)
|
1832
1842
|
let xcodebuildFormatterArg = RubyCommand.Argument(name: "xcodebuild_formatter", value: xcodebuildFormatter, type: nil)
|
1843
|
+
let buildTimingSummaryArg = buildTimingSummary.asRubyArgument(name: "build_timing_summary", type: nil)
|
1833
1844
|
let disableXcprettyArg = disableXcpretty.asRubyArgument(name: "disable_xcpretty", type: nil)
|
1834
1845
|
let xcprettyTestFormatArg = xcprettyTestFormat.asRubyArgument(name: "xcpretty_test_format", type: nil)
|
1835
1846
|
let xcprettyFormatterArg = xcprettyFormatter.asRubyArgument(name: "xcpretty_formatter", type: nil)
|
@@ -1877,6 +1888,7 @@ public func buildAndroidApp(task: OptionalConfigValue<String?> = .fastlaneDefaul
|
|
1877
1888
|
xcconfigArg,
|
1878
1889
|
suppressXcodeOutputArg,
|
1879
1890
|
xcodebuildFormatterArg,
|
1891
|
+
buildTimingSummaryArg,
|
1880
1892
|
disableXcprettyArg,
|
1881
1893
|
xcprettyTestFormatArg,
|
1882
1894
|
xcprettyFormatterArg,
|
@@ -5569,6 +5581,7 @@ public func gradle(task: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
|
5569
5581
|
- xcconfig: Use an extra XCCONFIG file to build your app
|
5570
5582
|
- suppressXcodeOutput: Suppress the output of xcodebuild to stdout. Output is still saved in buildlog_path
|
5571
5583
|
- xcodebuildFormatter: xcodebuild formatter to use (ex: 'xcbeautify', 'xcbeautify --quieter', 'xcpretty', 'xcpretty -test'). Use empty string (ex: '') to disable any formatter (More information: https://docs.fastlane.tools/best-practices/xcodebuild-formatters/)
|
5584
|
+
- buildTimingSummary: Create a build timing summary
|
5572
5585
|
- disableXcpretty: **DEPRECATED!** Use `xcodebuild_formatter: ''` instead - Disable xcpretty formatting of build output
|
5573
5586
|
- xcprettyTestFormat: Use the test (RSpec style) format for build output
|
5574
5587
|
- xcprettyFormatter: A custom xcpretty formatter to use
|
@@ -5623,6 +5636,7 @@ public func gradle(task: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
|
5623
5636
|
xcconfig: OptionalConfigValue<String?> = .fastlaneDefault(gymfile.xcconfig),
|
5624
5637
|
suppressXcodeOutput: OptionalConfigValue<Bool?> = .fastlaneDefault(gymfile.suppressXcodeOutput),
|
5625
5638
|
xcodebuildFormatter: String = gymfile.xcodebuildFormatter,
|
5639
|
+
buildTimingSummary: OptionalConfigValue<Bool> = .fastlaneDefault(gymfile.buildTimingSummary),
|
5626
5640
|
disableXcpretty: OptionalConfigValue<Bool?> = .fastlaneDefault(gymfile.disableXcpretty),
|
5627
5641
|
xcprettyTestFormat: OptionalConfigValue<Bool?> = .fastlaneDefault(gymfile.xcprettyTestFormat),
|
5628
5642
|
xcprettyFormatter: OptionalConfigValue<String?> = .fastlaneDefault(gymfile.xcprettyFormatter),
|
@@ -5673,6 +5687,7 @@ public func gradle(task: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
|
5673
5687
|
let xcconfigArg = xcconfig.asRubyArgument(name: "xcconfig", type: nil)
|
5674
5688
|
let suppressXcodeOutputArg = suppressXcodeOutput.asRubyArgument(name: "suppress_xcode_output", type: nil)
|
5675
5689
|
let xcodebuildFormatterArg = RubyCommand.Argument(name: "xcodebuild_formatter", value: xcodebuildFormatter, type: nil)
|
5690
|
+
let buildTimingSummaryArg = buildTimingSummary.asRubyArgument(name: "build_timing_summary", type: nil)
|
5676
5691
|
let disableXcprettyArg = disableXcpretty.asRubyArgument(name: "disable_xcpretty", type: nil)
|
5677
5692
|
let xcprettyTestFormatArg = xcprettyTestFormat.asRubyArgument(name: "xcpretty_test_format", type: nil)
|
5678
5693
|
let xcprettyFormatterArg = xcprettyFormatter.asRubyArgument(name: "xcpretty_formatter", type: nil)
|
@@ -5722,6 +5737,7 @@ public func gradle(task: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
|
5722
5737
|
xcconfigArg,
|
5723
5738
|
suppressXcodeOutputArg,
|
5724
5739
|
xcodebuildFormatterArg,
|
5740
|
+
buildTimingSummaryArg,
|
5725
5741
|
disableXcprettyArg,
|
5726
5742
|
xcprettyTestFormatArg,
|
5727
5743
|
xcprettyFormatterArg,
|
@@ -6629,7 +6645,7 @@ public func makeChangelogFromJenkins(fallbackChangelog: String = "",
|
|
6629
6645
|
Alias for the `sync_code_signing` action
|
6630
6646
|
|
6631
6647
|
- parameters:
|
6632
|
-
- type: Define the profile type, can be appstore, adhoc, development, enterprise, developer_id, mac_installer_distribution
|
6648
|
+
- type: Define the profile type, can be appstore, adhoc, development, enterprise, developer_id, mac_installer_distribution, developer_id_installer
|
6633
6649
|
- additionalCertTypes: Create additional cert types needed for macOS installers (valid values: mac_installer_distribution, developer_id_installer)
|
6634
6650
|
- readonly: Only fetch existing certificates and profiles, don't generate new ones
|
6635
6651
|
- generateAppleCerts: Create a certificate type for Xcode 11 and later (Apple Development or Apple Distribution)
|
@@ -6844,7 +6860,7 @@ public func match(type: String = matchfile.type,
|
|
6844
6860
|
Easily nuke your certificate and provisioning profiles (via _match_)
|
6845
6861
|
|
6846
6862
|
- parameters:
|
6847
|
-
- type: Define the profile type, can be appstore, adhoc, development, enterprise, developer_id, mac_installer_distribution
|
6863
|
+
- type: Define the profile type, can be appstore, adhoc, development, enterprise, developer_id, mac_installer_distribution, developer_id_installer
|
6848
6864
|
- additionalCertTypes: Create additional cert types needed for macOS installers (valid values: mac_installer_distribution, developer_id_installer)
|
6849
6865
|
- readonly: Only fetch existing certificates and profiles, don't generate new ones
|
6850
6866
|
- generateAppleCerts: Create a certificate type for Xcode 11 and later (Apple Development or Apple Distribution)
|
@@ -8662,6 +8678,7 @@ public func rubyVersion() {
|
|
8662
8678
|
- derivedDataPath: The directory where build products and other derived data will go
|
8663
8679
|
- shouldZipBuildProducts: Should zip the derived data build products and place in output path?
|
8664
8680
|
- outputXctestrun: Should provide additional copy of .xctestrun file (settings.xctestrun) and place in output path?
|
8681
|
+
- resultBundlePath: Custom path for the result bundle, overrides result_bundle
|
8665
8682
|
- resultBundle: Should an Xcode result bundle be generated in the output directory
|
8666
8683
|
- useClangReportName: Generate the json compilation database with clang naming convention (compile_commands.json)
|
8667
8684
|
- parallelTesting: Optionally override the per-target setting in the scheme for running tests in parallel. Equivalent to -parallel-testing-enabled
|
@@ -8743,6 +8760,7 @@ public func rubyVersion() {
|
|
8743
8760
|
derivedDataPath: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
8744
8761
|
shouldZipBuildProducts: OptionalConfigValue<Bool> = .fastlaneDefault(false),
|
8745
8762
|
outputXctestrun: OptionalConfigValue<Bool> = .fastlaneDefault(false),
|
8763
|
+
resultBundlePath: OptionalConfigValue<String?> = .fastlaneDefault(nil),
|
8746
8764
|
resultBundle: OptionalConfigValue<Bool> = .fastlaneDefault(false),
|
8747
8765
|
useClangReportName: OptionalConfigValue<Bool> = .fastlaneDefault(false),
|
8748
8766
|
parallelTesting: OptionalConfigValue<Bool?> = .fastlaneDefault(nil),
|
@@ -8820,6 +8838,7 @@ public func rubyVersion() {
|
|
8820
8838
|
let derivedDataPathArg = derivedDataPath.asRubyArgument(name: "derived_data_path", type: nil)
|
8821
8839
|
let shouldZipBuildProductsArg = shouldZipBuildProducts.asRubyArgument(name: "should_zip_build_products", type: nil)
|
8822
8840
|
let outputXctestrunArg = outputXctestrun.asRubyArgument(name: "output_xctestrun", type: nil)
|
8841
|
+
let resultBundlePathArg = resultBundlePath.asRubyArgument(name: "result_bundle_path", type: nil)
|
8823
8842
|
let resultBundleArg = resultBundle.asRubyArgument(name: "result_bundle", type: nil)
|
8824
8843
|
let useClangReportNameArg = useClangReportName.asRubyArgument(name: "use_clang_report_name", type: nil)
|
8825
8844
|
let parallelTestingArg = parallelTesting.asRubyArgument(name: "parallel_testing", type: nil)
|
@@ -8896,6 +8915,7 @@ public func rubyVersion() {
|
|
8896
8915
|
derivedDataPathArg,
|
8897
8916
|
shouldZipBuildProductsArg,
|
8898
8917
|
outputXctestrunArg,
|
8918
|
+
resultBundlePathArg,
|
8899
8919
|
resultBundleArg,
|
8900
8920
|
useClangReportNameArg,
|
8901
8921
|
parallelTestingArg,
|
@@ -9085,6 +9105,7 @@ public func say(text: [String],
|
|
9085
9105
|
- derivedDataPath: The directory where build products and other derived data will go
|
9086
9106
|
- shouldZipBuildProducts: Should zip the derived data build products and place in output path?
|
9087
9107
|
- outputXctestrun: Should provide additional copy of .xctestrun file (settings.xctestrun) and place in output path?
|
9108
|
+
- resultBundlePath: Custom path for the result bundle, overrides result_bundle
|
9088
9109
|
- resultBundle: Should an Xcode result bundle be generated in the output directory
|
9089
9110
|
- useClangReportName: Generate the json compilation database with clang naming convention (compile_commands.json)
|
9090
9111
|
- parallelTesting: Optionally override the per-target setting in the scheme for running tests in parallel. Equivalent to -parallel-testing-enabled
|
@@ -9166,6 +9187,7 @@ public func say(text: [String],
|
|
9166
9187
|
derivedDataPath: OptionalConfigValue<String?> = .fastlaneDefault(scanfile.derivedDataPath),
|
9167
9188
|
shouldZipBuildProducts: OptionalConfigValue<Bool> = .fastlaneDefault(scanfile.shouldZipBuildProducts),
|
9168
9189
|
outputXctestrun: OptionalConfigValue<Bool> = .fastlaneDefault(scanfile.outputXctestrun),
|
9190
|
+
resultBundlePath: OptionalConfigValue<String?> = .fastlaneDefault(scanfile.resultBundlePath),
|
9169
9191
|
resultBundle: OptionalConfigValue<Bool> = .fastlaneDefault(scanfile.resultBundle),
|
9170
9192
|
useClangReportName: OptionalConfigValue<Bool> = .fastlaneDefault(scanfile.useClangReportName),
|
9171
9193
|
parallelTesting: OptionalConfigValue<Bool?> = .fastlaneDefault(scanfile.parallelTesting),
|
@@ -9243,6 +9265,7 @@ public func say(text: [String],
|
|
9243
9265
|
let derivedDataPathArg = derivedDataPath.asRubyArgument(name: "derived_data_path", type: nil)
|
9244
9266
|
let shouldZipBuildProductsArg = shouldZipBuildProducts.asRubyArgument(name: "should_zip_build_products", type: nil)
|
9245
9267
|
let outputXctestrunArg = outputXctestrun.asRubyArgument(name: "output_xctestrun", type: nil)
|
9268
|
+
let resultBundlePathArg = resultBundlePath.asRubyArgument(name: "result_bundle_path", type: nil)
|
9246
9269
|
let resultBundleArg = resultBundle.asRubyArgument(name: "result_bundle", type: nil)
|
9247
9270
|
let useClangReportNameArg = useClangReportName.asRubyArgument(name: "use_clang_report_name", type: nil)
|
9248
9271
|
let parallelTestingArg = parallelTesting.asRubyArgument(name: "parallel_testing", type: nil)
|
@@ -9319,6 +9342,7 @@ public func say(text: [String],
|
|
9319
9342
|
derivedDataPathArg,
|
9320
9343
|
shouldZipBuildProductsArg,
|
9321
9344
|
outputXctestrunArg,
|
9345
|
+
resultBundlePathArg,
|
9322
9346
|
resultBundleArg,
|
9323
9347
|
useClangReportNameArg,
|
9324
9348
|
parallelTestingArg,
|
@@ -11062,7 +11086,7 @@ public func swiftlint(mode: String = "lint",
|
|
11062
11086
|
Easily sync your certificates and profiles across your team (via _match_)
|
11063
11087
|
|
11064
11088
|
- parameters:
|
11065
|
-
- type: Define the profile type, can be appstore, adhoc, development, enterprise, developer_id, mac_installer_distribution
|
11089
|
+
- type: Define the profile type, can be appstore, adhoc, development, enterprise, developer_id, mac_installer_distribution, developer_id_installer
|
11066
11090
|
- additionalCertTypes: Create additional cert types needed for macOS installers (valid values: mac_installer_distribution, developer_id_installer)
|
11067
11091
|
- readonly: Only fetch existing certificates and profiles, don't generate new ones
|
11068
11092
|
- generateAppleCerts: Create a certificate type for Xcode 11 and later (Apple Development or Apple Distribution)
|
@@ -13549,4 +13573,4 @@ public let snapshotfile: Snapshotfile = .init()
|
|
13549
13573
|
|
13550
13574
|
// Please don't remove the lines below
|
13551
13575
|
// They are used to detect outdated files
|
13552
|
-
// FastlaneRunnerAPIVersion [0.9.
|
13576
|
+
// FastlaneRunnerAPIVersion [0.9.166]
|
@@ -1,5 +1,5 @@
|
|
1
1
|
// Gymfile.swift
|
2
|
-
// Copyright (c)
|
2
|
+
// Copyright (c) 2023 FastlaneTools
|
3
3
|
|
4
4
|
// This class is automatically included in FastlaneRunner during build
|
5
5
|
|
@@ -17,4 +17,4 @@ public class Gymfile: GymfileProtocol {
|
|
17
17
|
// during the `init` process, and you won't see this message
|
18
18
|
}
|
19
19
|
|
20
|
-
// Generated with fastlane 2.
|
20
|
+
// Generated with fastlane 2.212.0
|
@@ -1,5 +1,5 @@
|
|
1
1
|
// GymfileProtocol.swift
|
2
|
-
// Copyright (c)
|
2
|
+
// Copyright (c) 2023 FastlaneTools
|
3
3
|
|
4
4
|
public protocol GymfileProtocol: AnyObject {
|
5
5
|
/// Path to the workspace file
|
@@ -107,6 +107,9 @@ public protocol GymfileProtocol: AnyObject {
|
|
107
107
|
/// xcodebuild formatter to use (ex: 'xcbeautify', 'xcbeautify --quieter', 'xcpretty', 'xcpretty -test'). Use empty string (ex: '') to disable any formatter (More information: https://docs.fastlane.tools/best-practices/xcodebuild-formatters/)
|
108
108
|
var xcodebuildFormatter: String { get }
|
109
109
|
|
110
|
+
/// Create a build timing summary
|
111
|
+
var buildTimingSummary: Bool { get }
|
112
|
+
|
110
113
|
/// **DEPRECATED!** Use `xcodebuild_formatter: ''` instead - Disable xcpretty formatting of build output
|
111
114
|
var disableXcpretty: Bool? { get }
|
112
115
|
|
@@ -186,6 +189,7 @@ public extension GymfileProtocol {
|
|
186
189
|
var xcconfig: String? { return nil }
|
187
190
|
var suppressXcodeOutput: Bool? { return nil }
|
188
191
|
var xcodebuildFormatter: String { return "xcbeautify" }
|
192
|
+
var buildTimingSummary: Bool { return false }
|
189
193
|
var disableXcpretty: Bool? { return nil }
|
190
194
|
var xcprettyTestFormat: Bool? { return nil }
|
191
195
|
var xcprettyFormatter: String? { return nil }
|
@@ -204,4 +208,4 @@ public extension GymfileProtocol {
|
|
204
208
|
|
205
209
|
// Please don't remove the lines below
|
206
210
|
// They are used to detect outdated files
|
207
|
-
// FastlaneRunnerAPIVersion [0.9.
|
211
|
+
// FastlaneRunnerAPIVersion [0.9.116]
|
@@ -1,5 +1,5 @@
|
|
1
1
|
// Matchfile.swift
|
2
|
-
// Copyright (c)
|
2
|
+
// Copyright (c) 2023 FastlaneTools
|
3
3
|
|
4
4
|
// This class is automatically included in FastlaneRunner during build
|
5
5
|
|
@@ -17,4 +17,4 @@ public class Matchfile: MatchfileProtocol {
|
|
17
17
|
// during the `init` process, and you won't see this message
|
18
18
|
}
|
19
19
|
|
20
|
-
// Generated with fastlane 2.
|
20
|
+
// Generated with fastlane 2.212.0
|
@@ -1,8 +1,8 @@
|
|
1
1
|
// MatchfileProtocol.swift
|
2
|
-
// Copyright (c)
|
2
|
+
// Copyright (c) 2023 FastlaneTools
|
3
3
|
|
4
4
|
public protocol MatchfileProtocol: AnyObject {
|
5
|
-
/// Define the profile type, can be appstore, adhoc, development, enterprise, developer_id, mac_installer_distribution
|
5
|
+
/// Define the profile type, can be appstore, adhoc, development, enterprise, developer_id, mac_installer_distribution, developer_id_installer
|
6
6
|
var type: String { get }
|
7
7
|
|
8
8
|
/// Create additional cert types needed for macOS installers (valid values: mac_installer_distribution, developer_id_installer)
|
@@ -208,4 +208,4 @@ public extension MatchfileProtocol {
|
|
208
208
|
|
209
209
|
// Please don't remove the lines below
|
210
210
|
// They are used to detect outdated files
|
211
|
-
// FastlaneRunnerAPIVersion [0.9.
|
211
|
+
// FastlaneRunnerAPIVersion [0.9.110]
|
@@ -1,5 +1,5 @@
|
|
1
1
|
// Precheckfile.swift
|
2
|
-
// Copyright (c)
|
2
|
+
// Copyright (c) 2023 FastlaneTools
|
3
3
|
|
4
4
|
// This class is automatically included in FastlaneRunner during build
|
5
5
|
|
@@ -17,4 +17,4 @@ public class Precheckfile: PrecheckfileProtocol {
|
|
17
17
|
// during the `init` process, and you won't see this message
|
18
18
|
}
|
19
19
|
|
20
|
-
// Generated with fastlane 2.
|
20
|
+
// Generated with fastlane 2.212.0
|
@@ -1,5 +1,5 @@
|
|
1
1
|
// PrecheckfileProtocol.swift
|
2
|
-
// Copyright (c)
|
2
|
+
// Copyright (c) 2023 FastlaneTools
|
3
3
|
|
4
4
|
public protocol PrecheckfileProtocol: AnyObject {
|
5
5
|
/// Path to your App Store Connect API Key JSON file (https://docs.fastlane.tools/app-store-connect-api/#using-fastlane-api-key-json-file)
|
@@ -52,4 +52,4 @@ public extension PrecheckfileProtocol {
|
|
52
52
|
|
53
53
|
// Please don't remove the lines below
|
54
54
|
// They are used to detect outdated files
|
55
|
-
// FastlaneRunnerAPIVersion [0.9.
|
55
|
+
// FastlaneRunnerAPIVersion [0.9.109]
|
data/fastlane/swift/Runner.swift
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
// Scanfile.swift
|
2
|
-
// Copyright (c)
|
2
|
+
// Copyright (c) 2023 FastlaneTools
|
3
3
|
|
4
4
|
// This class is automatically included in FastlaneRunner during build
|
5
5
|
|
@@ -17,4 +17,4 @@ public class Scanfile: ScanfileProtocol {
|
|
17
17
|
// during the `init` process, and you won't see this message
|
18
18
|
}
|
19
19
|
|
20
|
-
// Generated with fastlane 2.
|
20
|
+
// Generated with fastlane 2.212.0
|
@@ -1,5 +1,5 @@
|
|
1
1
|
// ScanfileProtocol.swift
|
2
|
-
// Copyright (c)
|
2
|
+
// Copyright (c) 2023 FastlaneTools
|
3
3
|
|
4
4
|
public protocol ScanfileProtocol: AnyObject {
|
5
5
|
/// Path to the workspace file
|
@@ -128,6 +128,9 @@ public protocol ScanfileProtocol: AnyObject {
|
|
128
128
|
/// Should provide additional copy of .xctestrun file (settings.xctestrun) and place in output path?
|
129
129
|
var outputXctestrun: Bool { get }
|
130
130
|
|
131
|
+
/// Custom path for the result bundle, overrides result_bundle
|
132
|
+
var resultBundlePath: String? { get }
|
133
|
+
|
131
134
|
/// Should an Xcode result bundle be generated in the output directory
|
132
135
|
var resultBundle: Bool { get }
|
133
136
|
|
@@ -274,6 +277,7 @@ public extension ScanfileProtocol {
|
|
274
277
|
var derivedDataPath: String? { return nil }
|
275
278
|
var shouldZipBuildProducts: Bool { return false }
|
276
279
|
var outputXctestrun: Bool { return false }
|
280
|
+
var resultBundlePath: String? { return nil }
|
277
281
|
var resultBundle: Bool { return false }
|
278
282
|
var useClangReportName: Bool { return false }
|
279
283
|
var parallelTesting: Bool? { return nil }
|
@@ -312,4 +316,4 @@ public extension ScanfileProtocol {
|
|
312
316
|
|
313
317
|
// Please don't remove the lines below
|
314
318
|
// They are used to detect outdated files
|
315
|
-
// FastlaneRunnerAPIVersion [0.9.
|
319
|
+
// FastlaneRunnerAPIVersion [0.9.121]
|
@@ -1,5 +1,5 @@
|
|
1
1
|
// Screengrabfile.swift
|
2
|
-
// Copyright (c)
|
2
|
+
// Copyright (c) 2023 FastlaneTools
|
3
3
|
|
4
4
|
// This class is automatically included in FastlaneRunner during build
|
5
5
|
|
@@ -17,4 +17,4 @@ public class Screengrabfile: ScreengrabfileProtocol {
|
|
17
17
|
// during the `init` process, and you won't see this message
|
18
18
|
}
|
19
19
|
|
20
|
-
// Generated with fastlane 2.
|
20
|
+
// Generated with fastlane 2.212.0
|
@@ -1,5 +1,5 @@
|
|
1
1
|
// ScreengrabfileProtocol.swift
|
2
|
-
// Copyright (c)
|
2
|
+
// Copyright (c) 2023 FastlaneTools
|
3
3
|
|
4
4
|
public protocol ScreengrabfileProtocol: AnyObject {
|
5
5
|
/// Path to the root of your Android SDK installation, e.g. ~/tools/android-sdk-macosx
|
@@ -96,4 +96,4 @@ public extension ScreengrabfileProtocol {
|
|
96
96
|
|
97
97
|
// Please don't remove the lines below
|
98
98
|
// They are used to detect outdated files
|
99
|
-
// FastlaneRunnerAPIVersion [0.9.
|
99
|
+
// FastlaneRunnerAPIVersion [0.9.111]
|
@@ -1,5 +1,5 @@
|
|
1
1
|
// Snapshotfile.swift
|
2
|
-
// Copyright (c)
|
2
|
+
// Copyright (c) 2023 FastlaneTools
|
3
3
|
|
4
4
|
// This class is automatically included in FastlaneRunner during build
|
5
5
|
|
@@ -17,4 +17,4 @@ public class Snapshotfile: SnapshotfileProtocol {
|
|
17
17
|
// during the `init` process, and you won't see this message
|
18
18
|
}
|
19
19
|
|
20
|
-
// Generated with fastlane 2.
|
20
|
+
// Generated with fastlane 2.212.0
|
@@ -1,5 +1,5 @@
|
|
1
1
|
// SnapshotfileProtocol.swift
|
2
|
-
// Copyright (c)
|
2
|
+
// Copyright (c) 2023 FastlaneTools
|
3
3
|
|
4
4
|
public protocol SnapshotfileProtocol: AnyObject {
|
5
5
|
/// Path the workspace file
|
@@ -204,4 +204,4 @@ public extension SnapshotfileProtocol {
|
|
204
204
|
|
205
205
|
// Please don't remove the lines below
|
206
206
|
// They are used to detect outdated files
|
207
|
-
// FastlaneRunnerAPIVersion [0.9.
|
207
|
+
// FastlaneRunnerAPIVersion [0.9.105]
|
@@ -2,45 +2,45 @@
|
|
2
2
|
"entries": {
|
3
3
|
"brew": {
|
4
4
|
"swiftformat": {
|
5
|
-
"version": "0.50.
|
5
|
+
"version": "0.50.9",
|
6
6
|
"bottle": {
|
7
7
|
"rebuild": 0,
|
8
8
|
"root_url": "https://ghcr.io/v2/homebrew/core",
|
9
9
|
"files": {
|
10
10
|
"arm64_ventura": {
|
11
11
|
"cellar": ":any_skip_relocation",
|
12
|
-
"url": "https://ghcr.io/v2/homebrew/core/swiftformat/blobs/sha256:
|
13
|
-
"sha256": "
|
12
|
+
"url": "https://ghcr.io/v2/homebrew/core/swiftformat/blobs/sha256:fd2f9e108c5485c1f2d0d89ef202fcafa50c09fbf64566430223e40648d1aee4",
|
13
|
+
"sha256": "fd2f9e108c5485c1f2d0d89ef202fcafa50c09fbf64566430223e40648d1aee4"
|
14
14
|
},
|
15
15
|
"arm64_monterey": {
|
16
16
|
"cellar": ":any_skip_relocation",
|
17
|
-
"url": "https://ghcr.io/v2/homebrew/core/swiftformat/blobs/sha256:
|
18
|
-
"sha256": "
|
17
|
+
"url": "https://ghcr.io/v2/homebrew/core/swiftformat/blobs/sha256:98ab8dbd40435f845b59d8d040d7795ead5e4faac82eb1eb8e660f658f59aa51",
|
18
|
+
"sha256": "98ab8dbd40435f845b59d8d040d7795ead5e4faac82eb1eb8e660f658f59aa51"
|
19
19
|
},
|
20
20
|
"arm64_big_sur": {
|
21
21
|
"cellar": ":any_skip_relocation",
|
22
|
-
"url": "https://ghcr.io/v2/homebrew/core/swiftformat/blobs/sha256:
|
23
|
-
"sha256": "
|
22
|
+
"url": "https://ghcr.io/v2/homebrew/core/swiftformat/blobs/sha256:6e7cb8b7c30422f4277513ab362f95b7010a02ab4d08ae2be9b159d97ad97833",
|
23
|
+
"sha256": "6e7cb8b7c30422f4277513ab362f95b7010a02ab4d08ae2be9b159d97ad97833"
|
24
24
|
},
|
25
|
-
"
|
25
|
+
"ventura": {
|
26
26
|
"cellar": ":any_skip_relocation",
|
27
|
-
"url": "https://ghcr.io/v2/homebrew/core/swiftformat/blobs/sha256:
|
28
|
-
"sha256": "
|
27
|
+
"url": "https://ghcr.io/v2/homebrew/core/swiftformat/blobs/sha256:deaa35f99636e9d2e5df80d8f638291eebaf53750ec3a0b2c6ccca7ebe75f5b8",
|
28
|
+
"sha256": "deaa35f99636e9d2e5df80d8f638291eebaf53750ec3a0b2c6ccca7ebe75f5b8"
|
29
29
|
},
|
30
|
-
"
|
30
|
+
"monterey": {
|
31
31
|
"cellar": ":any_skip_relocation",
|
32
|
-
"url": "https://ghcr.io/v2/homebrew/core/swiftformat/blobs/sha256:
|
33
|
-
"sha256": "
|
32
|
+
"url": "https://ghcr.io/v2/homebrew/core/swiftformat/blobs/sha256:e1ff4c783890b9b372b37f086b728a58783ce8f20f9db2cd34c89cd7e5baad8c",
|
33
|
+
"sha256": "e1ff4c783890b9b372b37f086b728a58783ce8f20f9db2cd34c89cd7e5baad8c"
|
34
34
|
},
|
35
|
-
"
|
35
|
+
"big_sur": {
|
36
36
|
"cellar": ":any_skip_relocation",
|
37
|
-
"url": "https://ghcr.io/v2/homebrew/core/swiftformat/blobs/sha256:
|
38
|
-
"sha256": "
|
37
|
+
"url": "https://ghcr.io/v2/homebrew/core/swiftformat/blobs/sha256:d2b8e64088220c937d50a6fad24daa490f04372cd5258dce7922fc9f6fcefbaa",
|
38
|
+
"sha256": "d2b8e64088220c937d50a6fad24daa490f04372cd5258dce7922fc9f6fcefbaa"
|
39
39
|
},
|
40
40
|
"x86_64_linux": {
|
41
41
|
"cellar": "/home/linuxbrew/.linuxbrew/Cellar",
|
42
|
-
"url": "https://ghcr.io/v2/homebrew/core/swiftformat/blobs/sha256:
|
43
|
-
"sha256": "
|
42
|
+
"url": "https://ghcr.io/v2/homebrew/core/swiftformat/blobs/sha256:293240d2b38f2ad02e4221c55895812774e78825bf9cd3e9b39a50c4c602e8d8",
|
43
|
+
"sha256": "293240d2b38f2ad02e4221c55895812774e78825bf9cd3e9b39a50c4c602e8d8"
|
44
44
|
}
|
45
45
|
}
|
46
46
|
}
|
@@ -72,6 +72,14 @@
|
|
72
72
|
"CLT": "13.4.0.0.1.1651278267",
|
73
73
|
"Xcode": "13.4.1",
|
74
74
|
"macOS": "12.5"
|
75
|
+
},
|
76
|
+
"ventura": {
|
77
|
+
"HOMEBREW_VERSION": "4.0.1-62-ga222a5b",
|
78
|
+
"HOMEBREW_PREFIX": "/opt/homebrew",
|
79
|
+
"Homebrew/homebrew-core": "api",
|
80
|
+
"CLT": "",
|
81
|
+
"Xcode": "13.4.1",
|
82
|
+
"macOS": "13.1"
|
75
83
|
}
|
76
84
|
}
|
77
85
|
}
|
data/fastlane/swift/main.swift
CHANGED
Binary file
|