From a30ec25e9f5ffb8ea954a7d8936965a32592f194 Mon Sep 17 00:00:00 2001 From: Ben Date: Wed, 13 Nov 2024 11:36:42 +0000 Subject: [PATCH] Supress valgrind issues for now --- .github/workflows/performance-and-size.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/performance-and-size.yml b/.github/workflows/performance-and-size.yml index b7294556..6d5dcdb6 100644 --- a/.github/workflows/performance-and-size.yml +++ b/.github/workflows/performance-and-size.yml @@ -161,12 +161,13 @@ jobs: - name: Valgrind and callgrind shell: bash + continue-on-error: true run: | - s="./compiler1,something" IFS=',' read -ra ITEMS <<< ${{ steps.compilers.outputs.BINARIES }} for compiler in ${ITEMS[@]}; do echo "::group::Running $compiler" + echo "::group::Callgrind" valgrind --tool=callgrind --callgrind-out-file=cpu-out $compiler check demo.tsx | true echo "CPU usage:" @@ -178,11 +179,13 @@ jobs: echo "Memory usage:" cat memory-out echo "::endgroup::" + echo "::endgroup::" done - name: Run parsing & stringing (minfied) benchmarks shell: bash + continue-on-error: true run: | strings=( "https://esm.sh/v128/react-dom@18.2.0/es2022/react-dom.mjs"