We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8db7d24 commit 5a17546Copy full SHA for 5a17546
.github/workflows/ci.yml
@@ -241,6 +241,20 @@ jobs:
241
- name: stats
242
run: |
243
make stats
244
+ linux-valgrind:
245
+ runs-on: ubuntu-latest
246
+ steps:
247
+ - uses: actions/checkout@v4
248
+ with:
249
+ submodules: true
250
+ - name: install valgrind
251
+ run: sudo apt-get install valgrind
252
+ - name: build
253
+ run: |
254
+ make BUILD_TYPE=RelWithDebInfo
255
+ - name: test
256
257
+ valgrind --leak-check=full --show-leak-kinds=all --error-exitcode=1 ./build/run-test262 -m -c test262.conf -a
258
259
macos:
260
runs-on: macos-latest
0 commit comments