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
2 changes: 1 addition & 1 deletion .github/actions/Build_and_Test_CppInterOp/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ runs:
else
cmake --build . --target check-cppinterop --parallel ${{ env.ncpus }}
os="${{ matrix.os }}"
if [[ "${os}" != "macos"* ]]; then
if [[ "${os}" != "macos"* && "${{ matrix.Valgrind }}" == "On" ]]; then
CLANG_VERSION="${{ matrix.clang-runtime }}"
if [[ "$CLANG_VERSION" == "20" && "${{ matrix.cling }}" == "Off" ]]; then
SUPPRESSION_FILE="../etc/clang${CLANG_VERSION}-valgrind.supp"
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/Build_and_Test_cppyy/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ runs:

set -o pipefail
os="${{ matrix.os }}"
if [[ "${os}" != "macos"* ]]; then
if [[ "${os}" != "macos"* && "${{ matrix.Valgrind }}" == "On" ]]; then
echo "Running valgrind on passing tests"
CLANG_VERSION="${{ matrix.clang-runtime }}"

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ jobs:
cppyy: Off
llvm_enable_projects: "clang"
llvm_targets_to_build: "host;NVPTX"
Valgrind: On
- name: ubu24-arm-gcc12-clang-repl-19-cppyy
os: ubuntu-24.04-arm
compiler: gcc-12
Expand Down Expand Up @@ -67,6 +68,7 @@ jobs:
llvm_targets_to_build: "host;NVPTX"
coverage: true
oop-jit: On
Valgrind: On
- name: ubu24-x86-gcc12-clang-repl-20
os: ubuntu-24.04
compiler: gcc-12
Expand Down Expand Up @@ -311,3 +313,4 @@ jobs:
uses: mxschmitt/action-tmate@v3
# When debugging increase to a suitable value!
timeout-minutes: 30

Loading