Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[macOS] Add Ninja #11707

Merged
merged 1 commit into from
Mar 4, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions images/macos/scripts/docs-gen/Generate-SoftwareReport.ps1
Original file line number Diff line number Diff line change
@@ -97,6 +97,7 @@ $utilities.AddToolVersion("pkgconf", $(Get-PKGConfVersion))
$utilities.AddToolVersion("Unxip", $(Get-UnxipVersion))
$utilities.AddToolVersion("yq", $(Get-YqVersion))
$utilities.AddToolVersion("zstd", $(Get-ZstdVersion))
$utilities.AddToolVersion("Ninja", $(Get-NinjaVersion))

# Tools
$tools = $installedSoftware.AddHeader("Tools")
4 changes: 4 additions & 0 deletions images/macos/scripts/docs-gen/SoftwareReport.Common.psm1
Original file line number Diff line number Diff line change
@@ -409,3 +409,7 @@ function Get-UnxipVersion {
$unxipVersion = Run-Command "unxip --version" | Take-Part -Part 1
return $unxipVersion
}

function Get-NinjaVersion {
return $(ninja --version)
}
22 changes: 22 additions & 0 deletions images/macos/scripts/tests/BasicTools.Tests.ps1
Original file line number Diff line number Diff line change
@@ -148,3 +148,25 @@ Describe "pkgconf" {
"pkgconf --version" | Should -ReturnZeroExitCode
}
}

Describe "Ninja" {
New-item -Path "/tmp/ninjaproject" -ItemType Directory -Force
Set-Location '/tmp/ninjaproject'
@'
cmake_minimum_required(VERSION 3.10)
project(NinjaTest NONE)
'@ | Out-File -FilePath "./CMakeLists.txt"

It "Make a simple ninja project" {
"cmake -GNinja /tmp/ninjaproject" | Should -ReturnZeroExitCode
}

It "build.ninja file should exist" {
$buildFilePath = Join-Path "/tmp/ninjaproject" "build.ninja"
$buildFilePath | Should -Exist
}

It "Ninja" {
"ninja --version" | Should -ReturnZeroExitCode
}
}
1 change: 1 addition & 0 deletions images/macos/toolsets/toolset-13.json
Original file line number Diff line number Diff line change
@@ -81,6 +81,7 @@
"swiftformat",
"tcl-tk@8",
"zstd",
"ninja",
"gmp",
"yq",
"xcbeautify",
1 change: 1 addition & 0 deletions images/macos/toolsets/toolset-14.json
Original file line number Diff line number Diff line change
@@ -84,6 +84,7 @@
"swiftformat",
"tcl-tk@8",
"zstd",
"ninja",
"gmp",
"yq",
"unxip",
1 change: 1 addition & 0 deletions images/macos/toolsets/toolset-15.json
Original file line number Diff line number Diff line change
@@ -77,6 +77,7 @@
"pkgconf",
"swiftformat",
"zstd",
"ninja",
"gmp",
"yq",
"unxip",