Skip to content

Commit

Permalink
Supress valgrind issues for now
Browse files Browse the repository at this point in the history
  • Loading branch information
kaleidawave committed Nov 13, 2024
1 parent e41edb5 commit a30ec25
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/performance-and-size.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:"
Expand All @@ -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/[email protected]/es2022/react-dom.mjs"
Expand Down

0 comments on commit a30ec25

Please sign in to comment.