mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-04 06:59:01 +08:00
56 lines
1.6 KiB
PowerShell
56 lines
1.6 KiB
PowerShell
[CmdletBinding()]
|
|
Param(
|
|
[Parameter(Mandatory=$True)]
|
|
[string]$Root,
|
|
[Parameter()]
|
|
[switch]$IgnoreErrors # allows one to just format
|
|
)
|
|
|
|
$clangFormat = 'C:\Program Files\LLVM\bin\clang-format.exe'
|
|
if (-not (Test-Path $clangFormat))
|
|
{
|
|
$clangFormat = 'C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Tools\Llvm\x64\bin\clang-format.exe'
|
|
if (-not (Test-Path $clangFormat))
|
|
{
|
|
Write-Error 'clang-format not found; is it installed in the CI machines?'
|
|
throw
|
|
}
|
|
}
|
|
|
|
$toolsrc = Get-Item "$Root/toolsrc"
|
|
Push-Location $toolsrc
|
|
|
|
try
|
|
{
|
|
$files = Get-ChildItem -Recurse -LiteralPath "$toolsrc/src" -Filter '*.cpp'
|
|
$files += Get-ChildItem -Recurse -LiteralPath "$toolsrc/include/vcpkg" -Filter '*.h'
|
|
$files += Get-ChildItem -Recurse -LiteralPath "$toolsrc/include/vcpkg-test" -Filter '*.h'
|
|
$files += Get-Item "$toolsrc/include/pch.h"
|
|
$fileNames = $files.FullName
|
|
|
|
& $clangFormat -style=file -i @fileNames
|
|
|
|
$changedFiles = & "$PSScriptRoot/Get-ChangedFiles.ps1" -Directory $toolsrc
|
|
if (-not $IgnoreErrors -and $null -ne $changedFiles)
|
|
{
|
|
$msg = @(
|
|
"",
|
|
"The formatting of the C++ files didn't match our expectation.",
|
|
"See github.com/microsoft/vcpkg/blob/master/docs/maintainers/maintainer-guide.md#vcpkg-internal-code for solution."
|
|
)
|
|
$msg += "File list:"
|
|
$msg += " $changedFiles"
|
|
$msg += ""
|
|
|
|
$msg += "clang-format should produce the following diff:"
|
|
$msg += git diff $toolsrc
|
|
|
|
Write-Error ($msg -join "`n")
|
|
throw
|
|
}
|
|
}
|
|
finally
|
|
{
|
|
Pop-Location
|
|
}
|