Skip to content

Commit 20482da

Browse files
committed
submodules
1 parent 5f30255 commit 20482da

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/memcheck.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ name: mem-check
2424

2525
jobs:
2626
mem-check:
27-
runs-on: ubuntu-latest
27+
runs-on: ubuntu-24.04 # Remember to update RSPM below to match
2828

2929
name: valgrind ${{ matrix.config.test }}
3030

@@ -38,10 +38,15 @@ jobs:
3838
env:
3939
R_REMOTES_NO_ERRORS_FROM_WARNINGS: true
4040
_R_CHECK_FORCE_SUGGESTS_: false
41-
RSPM: https://packagemanager.rstudio.com/cran/__linux__/focal/latest
41+
RSPM: https://packagemanager.rstudio.com/cran/__linux__/noble/latest
4242
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
43+
LD_PRELOAD: /usr/lib/x86_64-linux-gnu/libasan.so.6 # Path to ASan runtime library
4344

4445
steps:
46+
- uses: actions/checkout@v4
47+
with:
48+
submodules: true
49+
4550
- uses: ms609/actions/memcheck@main
4651
with:
4752
test: ${{ matrix.config.test}}

0 commit comments

Comments
 (0)