-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (43 loc) · 1.29 KB
/
R-CMD-check-special.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
name: R-CMD-check-special
jobs:
sanitizers-and-valgrind:
runs-on: ubuntu-latest
name: ${{ matrix.config.name }}
container:
image: ${{ matrix.config.container }}
strategy:
fail-fast: false
matrix:
config:
- { label: "clang-asan",
name: "clang-asan",
container: "ghcr.io/r-hub/containers/clang-asan:latest"}
- { label: "valgrind",
name: "valgrind",
container: "ghcr.io/r-hub/containers/valgrind:latest"}
- { label: "rchk",
name: "rchk",
container: "ghcr.io/r-hub/containers/rchk:latest"}
env:
MAKEFLAGS: -j4
steps:
- uses: r-hub/actions/checkout@main
with:
submodules: true
- uses: r-hub/actions/platform-info@main
with:
token: ${{ secrets.GITHUB_TOKEN }}
job-config: ${{ toJson(matrix.config) }}
- uses: r-hub/actions/setup-deps@main
with:
token: ${{ secrets.GITHUB_TOKEN }}
job-config: ${{ toJson(matrix.config) }}
- uses: r-hub/actions/run-check@main
with:
token: ${{ secrets.GITHUB_TOKEN }}
job-config: ${{ toJson(matrix.config) }}