Skip to content

Commit

Permalink
Fix if statement debug_build Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
mcbarton authored Nov 27, 2024
1 parent b6942bb commit 0bbbd08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -894,7 +894,7 @@ jobs:
{
$env:CLAD_CODE_COVERAGE="0"
}
if ( "matrix.debug_build" -imatch "true" )
if ( "${{ matrix.debug_build }}" -imatch "true" )
{
((Get-Content -path $env:GITHUB_WORKSPACE/llvm-project/build/lib/cmake/llvm/LLVMConfig.cmake -Raw) -replace 'LLVM_ENABLE_DIA_SDK ON','LLVM_ENABLE_DIA_SDK OFF') | Set-Content -Path $env:GITHUB_WORKSPACE/llvm-project/build/lib/cmake/llvm/LLVMConfig.cmake
}
Expand Down

0 comments on commit 0bbbd08

Please sign in to comment.