Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: CI: Valgrind #2763

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from
Draft
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
7 changes: 7 additions & 0 deletions .ci/env/valgrind_setup.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
wget https://sourceware.org/pub/valgrind/valgrind-3.22.0.tar.bz2
tar -xjf valgrind-3.22.0.tar.bz2
cd valgrind-3.22.0
./configure --enable-only64bit
make
make install
valgrind ls -l
14 changes: 14 additions & 0 deletions .ci/pipeline/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -558,6 +558,20 @@ jobs:
fi
displayName: 'bazel-cache-limit'

- job: LinuxValgrind
# dependsOn: LinuxBazel
timeoutInMinutes: 0
pool:
vmImage: '$(VM_IMAGE)'
steps:
- script: |
valgrind_location=$(which valgrind)
echo "Valgrind location: $valgrind_location"
source .ci/env/valgrind_setup.sh
displayName: 'install-valgrind'



- job: LinuxDaal4py
dependsOn: LinuxMakeGNU_MKL
timeoutInMinutes: 0
Expand Down
Loading