Skip to content

Commit

Permalink
Do not mem check VTK (a lot of false positives)
Browse files Browse the repository at this point in the history
  • Loading branch information
sanguinariojoe committed Jun 11, 2024
1 parent d06b02f commit 6800020
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions .github/workflows/memcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,6 @@ env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
BUILD_TYPE: RelWithDebInfo
PROCESSES: 4
VTK_VERSION_MAJOR: 9
VTK_VERSION_MINOR: 2
VTK_VERSION_PATCH: 6

jobs:
memcheck:
Expand All @@ -31,13 +28,8 @@ jobs:
sudo apt-get -qq update
sudo apt-get -qq -y install valgrind
- name: Install VTK
run: |
sudo apt-get -qq update
sudo apt-get -qq -y install libvtk9-dev
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON -DEXTERNAL_EIGEN:BOOL=OFF -DPYTHON_WRAPPER:BOOL=OFF -DRUST_WRAPPER:BOOL=OFF -DUSE_VTK=ON -DBUILD_TESTING=ON
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON -DEXTERNAL_EIGEN:BOOL=OFF -DPYTHON_WRAPPER:BOOL=OFF -DRUST_WRAPPER:BOOL=OFF -DUSE_VTK=OFF -DBUILD_TESTING=ON

- name: Build
id: build
Expand Down

0 comments on commit 6800020

Please sign in to comment.