Skip to content

Move CVXPY converters to DNLP repo, simplify to pure C bindings (#26) #230

Move CVXPY converters to DNLP repo, simplify to pure C bindings (#26)

Move CVXPY converters to DNLP repo, simplify to pure C bindings (#26) #230

Workflow file for this run

name: Valgrind
on: [push, pull_request]
jobs:
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y valgrind
- name: Configure Debug build
run: cmake -B build -S . -DCMAKE_BUILD_TYPE=Debug
- name: Build
run: cmake --build build --config Debug
- name: Run tests under Valgrind
run: |
valgrind --leak-check=full --show-leak-kinds=all \
--track-origins=yes -s --show-reachable=yes \
--error-exitcode=1 build/all_tests