Skip to content

Commit

Permalink
gha valgrind
Browse files Browse the repository at this point in the history
  • Loading branch information
stla committed Oct 10, 2023
1 parent 11cd1b7 commit 44cc264
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/R-CMD-check-valgrind.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# Workflow derived from https://github.com/r-lib/actions/tree/master/examples
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]

name: R-CMD-check-with-valgrind

jobs:
R-CMD-check-with-valgrind:
runs-on: ubuntu-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
R_KEEP_PKG_SOURCE: yes
RGL_USE_NULL: TRUE
_R_CHECK_USE_VALGRIND_: true
steps:
- uses: actions/checkout@v3

- name: Install system dependencies
env:
RHUB_PLATFORM: linux-x86_64-ubuntu-gcc
run: sudo apt update && sudo apt install -y valgrind

- uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true

- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::rcmdcheck
needs: check

- name: Check with valgrind
run: rcmdcheck::rcmdcheck(build_args = "--no-build-vignettes", args = c("--use-valgrind", "--no-manual", "--ignore-vignettes"), error_on = "warning", check_dir = "check")
shell: Rscript {0}

- name: Upload check results
uses: actions/upload-artifact@master
with:
name: ${{ runner.os }}-rrelease-results
path: check

0 comments on commit 44cc264

Please sign in to comment.