Skip to content

Commit fbe3a1e

Browse files
authored
Merge pull request #632 from PowerGridModel/revert-625-feature/temporary-dco-check
Revert "temporarily add DCO check"
2 parents 75db84c + 0624e74 commit fbe3a1e

File tree

2 files changed

+5
-34
lines changed

2 files changed

+5
-34
lines changed

.github/workflows/dco-check.yml

Lines changed: 0 additions & 33 deletions
This file was deleted.

.github/workflows/main.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ jobs:
9999
strategy:
100100
matrix:
101101
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]
103103

104104
env:
105105
PRESET: ${{ matrix.compiler }}-${{ matrix.build-option }}
@@ -127,6 +127,10 @@ jobs:
127127
Import-Module (Join-Path $vsPath 'Common7\Tools\Microsoft.VisualStudio.DevShell.dll')
128128
Enter-VsDevShell -VsInstallPath $vsPath -SkipAutomaticLocation -DevCmdArguments '-arch=x64 -host_arch=x64'
129129
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+
130134
# generate cmake cache
131135
cmake --preset ${{ env.PRESET }} -DCMAKE_PREFIX_PATH=C:\conda_envs\cpp_pkgs\Library; if(!$?) { Exit $LASTEXITCODE }
132136
# build

0 commit comments

Comments
 (0)