Skip to content

Commit 4dfc7e0

Browse files
author
Steve Lee (POWERSHELL HE/HIM) (from Dev Box)
committed
move build tools up above tree-sitter
1 parent c140616 commit 4dfc7e0

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

build.ps1

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,11 @@ process {
200200
Install-Clippy -UseCFS:$UseCFS -Architecture $Architecture @VerboseParam
201201
}
202202

203+
if (!$SkipBuild -and !$SkipLinkCheck -and $IsWindows) {
204+
Write-BuildProgress @progressParams -Status "Ensuring Windows C++ build tools are available"
205+
Install-WindowsCPlusPlusBuildTools @VerboseParam
206+
}
207+
203208
if (-not ($SkipBuild -and $Test -and $ExcludeRustTests)) {
204209
Write-BuildProgress @progressParams -Status 'Ensuring Protobuf is available'
205210
Install-Protobuf @VerboseParam
@@ -212,10 +217,6 @@ process {
212217
}
213218
}
214219

215-
if (!$SkipBuild -and !$SkipLinkCheck -and $IsWindows) {
216-
Write-BuildProgress @progressParams -Status "Ensuring Windows C++ build tools are available"
217-
Install-WindowsCPlusPlusBuildTools @VerboseParam
218-
}
219220
#endregion Setup
220221

221222
if (!$SkipBuild) {

0 commit comments

Comments
 (0)