File tree Expand file tree Collapse file tree 2 files changed +5
-34
lines changed Expand file tree Collapse file tree 2 files changed +5
-34
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 99
99
strategy :
100
100
matrix :
101
101
build-option : [ debug, release ]
102
- compiler : [msvc] # , clang-cl] TODO(mgovers): reenable Clang CL when https://github.com/actions/runner-images/issues/10001 is fixed
102
+ compiler : [msvc, clang-cl]
103
103
104
104
env :
105
105
PRESET : ${{ matrix.compiler }}-${{ matrix.build-option }}
@@ -127,6 +127,10 @@ jobs:
127
127
Import-Module (Join-Path $vsPath 'Common7\Tools\Microsoft.VisualStudio.DevShell.dll')
128
128
Enter-VsDevShell -VsInstallPath $vsPath -SkipAutomaticLocation -DevCmdArguments '-arch=x64 -host_arch=x64'
129
129
130
+ # Resolve dirty PATH environment
131
+ # TODO(mgovers): Remove after https://github.com/actions/runner-images/issues/10001 is resolved
132
+ $env:PATH = ($env:PATH -split ';' | Where-Object { $_ -ne 'C:\Program Files\LLVM\bin' }) -join ';'
133
+
130
134
# generate cmake cache
131
135
cmake --preset ${{ env.PRESET }} -DCMAKE_PREFIX_PATH=C:\conda_envs\cpp_pkgs\Library; if(!$?) { Exit $LASTEXITCODE }
132
136
# build
You can’t perform that action at this time.
0 commit comments