Add jazzy tool to MacOS 10.14 - 12 (#4348)

This commit is contained in:
Nikolay Frolov
2021-10-27 16:48:10 +03:00
committed by GitHub
parent a8f97f0023
commit 4eb1b7986d
7 changed files with 20 additions and 4 deletions

View File

@@ -512,6 +512,11 @@ function Get-SbtVersion {
return "Sbt $sbtVersion" return "Sbt $sbtVersion"
} }
function Get-JazzyVersion {
$jazzyVersion = Run-Command "jazzy --version" | Take-Part -Part 2
return "Jazzy $jazzyVersion"
}
function Build-PackageManagementEnvironmentTable { function Build-PackageManagementEnvironmentTable {
return @( return @(
@{ @{

View File

@@ -176,6 +176,7 @@ $markdown += New-MDNewLine
# Tools # Tools
$markdown += New-MDHeader "Tools" -Level 3 $markdown += New-MDHeader "Tools" -Level 3
$toolsList = @( $toolsList = @(
(Get-JazzyVersion),
(Get-FastlaneVersion), (Get-FastlaneVersion),
(Get-CmakeVersion), (Get-CmakeVersion),
(Get-AppCenterCLIVersion), (Get-AppCenterCLIVersion),

View File

@@ -35,4 +35,10 @@ Describe "xcpretty" {
It "xcpretty" { It "xcpretty" {
"xcpretty --version" | Should -ReturnZeroExitCode "xcpretty --version" | Should -ReturnZeroExitCode
} }
}
Describe "jazzy" {
It "jazzy" {
"jazzy --version" | Should -ReturnZeroExitCode
}
} }

View File

@@ -371,7 +371,8 @@
"nomad-cli", "nomad-cli",
"xcpretty", "xcpretty",
"bundler", "bundler",
"fastlane" "fastlane",
"jazzy"
] ]
}, },
"go": { "go": {

View File

@@ -325,7 +325,8 @@
"nomad-cli", "nomad-cli",
"xcpretty", "xcpretty",
"bundler", "bundler",
"fastlane" "fastlane",
"jazzy"
] ]
}, },
"go": { "go": {

View File

@@ -268,7 +268,8 @@
"nomad-cli", "nomad-cli",
"xcpretty", "xcpretty",
"bundler", "bundler",
"fastlane" "fastlane",
"jazzy"
] ]
}, },
"go": { "go": {

View File

@@ -168,7 +168,8 @@
"cocoapods", "cocoapods",
"xcpretty", "xcpretty",
"bundler", "bundler",
"fastlane" "fastlane",
"jazzy"
] ]
}, },
"go": { "go": {