Skip to content

Commit 65e8f15

Browse files
authored
Fix conditional check for Valgrind in action.yml
1 parent eb2fcde commit 65e8f15

File tree

1 file changed

+1
-1
lines changed
  • .github/actions/Build_and_Test_CppInterOp

1 file changed

+1
-1
lines changed

.github/actions/Build_and_Test_CppInterOp/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ runs:
5858
else
5959
cmake --build . --target check-cppinterop --parallel ${{ env.ncpus }}
6060
os="${{ matrix.os }}"
61-
if [[ "${os}" != "macos"* && "${matrix.Valgrind}" == "On" ]]; then
61+
if [[ "${os}" != "macos"* && "${{ matrix.Valgrind }}" == "On" ]]; then
6262
CLANG_VERSION="${{ matrix.clang-runtime }}"
6363
if [[ "$CLANG_VERSION" == "20" && "${{ matrix.cling }}" == "Off" ]]; then
6464
SUPPRESSION_FILE="../etc/clang${CLANG_VERSION}-valgrind.supp"

0 commit comments

Comments
 (0)