From 40306f04cd8fcdfc0264d6bdec5d2c157e45a335 Mon Sep 17 00:00:00 2001 From: Luca Barbato Date: Fri, 18 Aug 2023 13:27:07 +0200 Subject: [PATCH] Remove the no-op valgrind --- .github/workflows/libp2p-rust-dht.yml | 33 --------------------------- 1 file changed, 33 deletions(-) diff --git a/.github/workflows/libp2p-rust-dht.yml b/.github/workflows/libp2p-rust-dht.yml index 47508eb..55c891c 100644 --- a/.github/workflows/libp2p-rust-dht.yml +++ b/.github/workflows/libp2p-rust-dht.yml @@ -415,39 +415,6 @@ jobs: ################################## UNSAFE CHECKS LEVEL ######################### - valgrind: - - needs: cache-level - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - - name: Install protobuf compiler - run: | - sudo apt-get update - sudo apt-get install protobuf-compiler - - - name: Install valgrind - run: | - sudo apt-get install valgrind - - - name: Install cargo-valgrind - env: - VALGRIND_LINK: https://github.com/jfrimmel/cargo-valgrind/releases/download - VALGRIND_VERSION: 2.1.0 - run: | - curl -L "$VALGRIND_LINK/v$VALGRIND_VERSION/cargo-valgrind-$VALGRIND_VERSION-x86_64-unknown-linux-musl.tar.gz" | - tar xz -C $HOME/.cargo/bin - - # Usage of the `help` command as base command, please replace it - # with the effective command that valgrind has to analyze - - name: Run cargo-valgrind - run: | - cargo valgrind run -- --help - # cargo valgrind test - careful: needs: cache-level