Skip to content
Merged
Show file tree
Hide file tree
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
7 changes: 1 addition & 6 deletions buildbot-worker/BuildbotWorker/Run-BuildbotWorker.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,7 @@ Make sure the amount of disk space is set in the storage-opts setting of the dae
Write-Host 'Initializing Visual Studio environment';
Initialize-VSEnvironment -Architecture 'amd64' -Path (Get-VSBuildTools2022VCVarsAllPath);

if ($env:COMPILER -eq 'Clang') {
$compilerExe = 'clang-cl.exe';
} else {
$compilerExe = 'cl.exe';
}

$compilerExe = 'clang-cl.exe';
$compilerPath = (Get-Command $compilerExe).Path;

Write-Host ('Found compiler at {0}' -f $compilerPath);
Expand Down
2 changes: 1 addition & 1 deletion msbuild-2022/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ RUN Install-VSBuildTools2022 -InstallationPath C:\MSVS -Workloads `
# Install LLVM for Clang tooling support
#--------------------------------------------------------------------

ENV LLVM_VERSION 21.1.0
ENV LLVM_VERSION 21.1.8

RUN Install-LLVM -Version $env:LLVM_VERSION -InstallationPath C:\LLVM;

Expand Down
Loading