2024-03-18 11:40:23 +00:00
|
|
|
name: valgrind
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
linux:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
with:
|
|
|
|
submodules: true
|
|
|
|
- name: install valgrind
|
2024-04-22 09:53:50 +00:00
|
|
|
run: sudo apt-get update && sudo apt-get install valgrind
|
2024-03-18 11:40:23 +00:00
|
|
|
- name: build
|
|
|
|
run: |
|
|
|
|
make BUILD_TYPE=RelWithDebInfo
|
|
|
|
- name: test
|
|
|
|
run: |
|
2024-04-09 08:36:49 +00:00
|
|
|
valgrind --leak-check=full --show-leak-kinds=all --track-origins=yes --error-exitcode=1 ./build/run-test262 -m -c test262.conf -c test262-fast.conf -a
|