-
Notifications
You must be signed in to change notification settings - Fork 2
130 lines (104 loc) · 3.55 KB
/
R-CMD-check-v0.4.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
on:
push:
inputs:
cache_version:
type: string
default: '0'
jobs:
R-CMD-check:
name: "🔎 Check: SCDB v0.4, ${{ matrix.config.os }} (${{ matrix.config.r }})"
runs-on: ${{ matrix.config.os }}-latest
strategy:
fail-fast: false
matrix:
config:
- {os: macos, r: 'release'}
- {os: windows, r: 'release'}
- {os: ubuntu, r: 'release'}
- {os: ubuntu, r: 'oldrel-1'}
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
R_KEEP_PKG_SOURCE: yes
BACKEND: SQLite
BACKEND_DRV: RSQLite::SQLite
BACKEND_ARGS: 'list(dbname = file.path(tempdir(), "SQLite.SQLite"))'
steps:
- uses: actions/checkout@v4
- name: Set SCDB version to v0.4
run: |
perl -pi -e 's/SCDB \(>= 0.3.0\)/SCDB \(>= 0.4.0\)/g' DESCRIPTION
- uses: r-lib/actions/setup-pandoc@v2
- uses: r-lib/actions/setup-r@v2
with:
r-version: ${{ matrix.config.r }}
http-user-agent: ${{ matrix.config.http-user-agent }}
use-public-rspm: true
- uses: r-lib/actions/setup-r-dependencies@v2
with:
cache-version: ${{ inputs.cache_version }}
extra-packages: any::rcmdcheck, github::ssi-dk/[email protected]
needs: check
- uses: r-lib/actions/check-r-package@v2
with:
upload-snapshots: true
args: c("--no-manual", "--as-cran", "--no-tests")
R-CMD-check-hard:
runs-on: ubuntu-latest
name: "🔎 Check: SCDB v0.4, ubuntu (release, no dependencies)"
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
R_KEEP_PKG_SOURCE: yes
BACKEND: SQLite
BACKEND_DRV: RSQLite::SQLite
BACKEND_ARGS: 'list(dbname = file.path(tempdir(), "SQLite.SQLite"))'
steps:
- uses: actions/checkout@v4
- name: Set SCDB version to v0.4
run: |
perl -pi -e 's/SCDB \(>= 0.3.0\)/SCDB \(>= 0.4.0\)/g' DESCRIPTION
- uses: r-lib/actions/setup-pandoc@v2
- uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true
- uses: r-lib/actions/setup-r-dependencies@v2
with:
dependencies: '"hard"'
cache: false
extra-packages: |
any::rcmdcheck
any::testthat
any::knitr
any::rmarkdown
github::ssi-dk/[email protected]
needs: check
- uses: r-lib/actions/check-r-package@v2
with:
upload-snapshots: true
R-CMD-check-devel:
runs-on: ubuntu-latest
name: "🔎 Check: SCDB v0.4, ubuntu (r-devel)"
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
R_KEEP_PKG_SOURCE: yes
BACKEND: SQLite
BACKEND_DRV: RSQLite::SQLite
BACKEND_ARGS: 'list(dbname = file.path(tempdir(), "SQLite.SQLite"))'
steps:
- uses: actions/checkout@v4
- name: Set SCDB version to v0.4
run: |
perl -pi -e 's/SCDB \(>= 0.3.0\)/SCDB \(>= 0.4.0\)/g' DESCRIPTION
- uses: r-lib/actions/setup-pandoc@v2
- uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true
- uses: r-lib/actions/setup-r-dependencies@v2
with:
cache-version: ${{ inputs.cache_version }}
extra-packages: any::rcmdcheck, github::ssi-dk/[email protected]
needs: check
- uses: r-lib/actions/check-r-package@v2
with:
upload-snapshots: true