Skip to content

Commit

Permalink
Test automatic workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
andrjohns committed May 14, 2024
1 parent 8d90500 commit ca151d9
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions .github/workflows/R-CMD-check-asan.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,30 @@ on:
pull_request:
branches: [main, master]

name: R-CMD-check-asan
name: R-CMD-check-special

jobs:
linux-containers:
sanitizers-and-valgrind:
runs-on: ubuntu-latest
name: ASAN Check
name: ${{ matrix.config.name }}
container:
image: ${{ matrix.config.container }}
strategy:
fail-fast: false
container:
image: ghcr.io/r-hub/containers/clang-asan:latest
matrix:
config:
- { name: sanitizers,
container: ghcr.io/r-hub/containers/clang-asan:latest,
git-install: apt-get update && apt-get install -y git }
- { name: valgrind,
container: ghcr.io/r-hub/containers/valgrind:latest,
git-install: dnf check-update && dnf install -y git }
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
R_KEEP_PKG_SOURCE: yes
steps:
- name: Install git
run: apt-get update && apt-get install -y git
run: ${{ matrix.config.git-install }}
- uses: r-hub/actions/[email protected]
with:
submodules: true
Expand Down

0 comments on commit ca151d9

Please sign in to comment.