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
Changes from 1 commit
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
Next Next commit
CI: Valgrind
ethanglaser committed May 3, 2024
commit c865ab2634c0151b0b9eb7819d5c33034e671a44
1 change: 1 addition & 0 deletions .ci/env/valgrind_setup.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
wget https://sourceware.org/pub/valgrind/valgrind-3.22.0.tar.bz2
13 changes: 13 additions & 0 deletions .ci/pipeline/ci.yml
Original file line number Diff line number Diff line change
@@ -558,6 +558,19 @@ jobs:
fi
displayName: 'bazel-cache-limit'

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



- job: LinuxDaal4py
dependsOn: LinuxMakeGNU_MKL
timeoutInMinutes: 0
Loading