Skip to content

Commit 4eb1b79

Browse files
Add jazzy tool to MacOS 10.14 - 12 (#4348)
1 parent a8f97f0 commit 4eb1b79

File tree

7 files changed

+20
-4
lines changed

7 files changed

+20
-4
lines changed

images/macos/software-report/SoftwareReport.Common.psm1

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -512,6 +512,11 @@ function Get-SbtVersion {
512512
return "Sbt $sbtVersion"
513513
}
514514

515+
function Get-JazzyVersion {
516+
$jazzyVersion = Run-Command "jazzy --version" | Take-Part -Part 2
517+
return "Jazzy $jazzyVersion"
518+
}
519+
515520
function Build-PackageManagementEnvironmentTable {
516521
return @(
517522
@{

images/macos/software-report/SoftwareReport.Generator.ps1

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,7 @@ $markdown += New-MDNewLine
176176
# Tools
177177
$markdown += New-MDHeader "Tools" -Level 3
178178
$toolsList = @(
179+
(Get-JazzyVersion),
179180
(Get-FastlaneVersion),
180181
(Get-CmakeVersion),
181182
(Get-AppCenterCLIVersion),

images/macos/tests/RubyGem.Tests.ps1

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,10 @@ Describe "xcpretty" {
3535
It "xcpretty" {
3636
"xcpretty --version" | Should -ReturnZeroExitCode
3737
}
38+
}
39+
40+
Describe "jazzy" {
41+
It "jazzy" {
42+
"jazzy --version" | Should -ReturnZeroExitCode
43+
}
3844
}

images/macos/toolsets/toolset-10.14.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,8 @@
371371
"nomad-cli",
372372
"xcpretty",
373373
"bundler",
374-
"fastlane"
374+
"fastlane",
375+
"jazzy"
375376
]
376377
},
377378
"go": {

images/macos/toolsets/toolset-10.15.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,8 @@
325325
"nomad-cli",
326326
"xcpretty",
327327
"bundler",
328-
"fastlane"
328+
"fastlane",
329+
"jazzy"
329330
]
330331
},
331332
"go": {

images/macos/toolsets/toolset-11.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,8 @@
268268
"nomad-cli",
269269
"xcpretty",
270270
"bundler",
271-
"fastlane"
271+
"fastlane",
272+
"jazzy"
272273
]
273274
},
274275
"go": {

images/macos/toolsets/toolset-12.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,8 @@
168168
"cocoapods",
169169
"xcpretty",
170170
"bundler",
171-
"fastlane"
171+
"fastlane",
172+
"jazzy"
172173
]
173174
},
174175
"go": {

0 commit comments

Comments
 (0)