-
Notifications
You must be signed in to change notification settings - Fork 19
130 lines (114 loc) · 5.11 KB
/
R-CMD-check.yaml
File metadata and controls
130 lines (114 loc) · 5.11 KB
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
on: [push, pull_request]
name: R-CMD-check
jobs:
R-CMD-check:
if: "! contains(github.event.head_commit.message, '[ci skip]')"
timeout-minutes: 30
runs-on: ${{ matrix.config.os }}
name: ${{ matrix.config.os }} (${{ matrix.config.r }}) ${{ matrix.config.label }}
strategy:
fail-fast: false
matrix:
config:
- {os: windows-latest, r: 'devel' }
- {os: windows-latest, r: 'release' }
- {os: windows-latest, r: 'oldrel' }
- {os: macOS-latest, r: 'devel' }
- {os: macOS-latest, r: 'release' }
- {os: macOS-latest, r: 'oldrel' }
- {os: ubuntu-latest, r: 'devel', strict: true, label: 'strict' }
- {os: ubuntu-latest, r: 'release' }
- {os: ubuntu-latest, r: 'oldrel' }
- {os: ubuntu-latest, r: 'oldrel-1' }
- {os: ubuntu-latest, r: 'oldrel-2' }
- {os: ubuntu-latest, r: '4.0' }
- {os: ubuntu-latest, r: 'release' , language: ko, label: ko }
- {os: ubuntu-latest, r: 'release' , globals_keepWhere: true, label: 'keepWhere' }
- {os: ubuntu-latest, r: 'release' , globals_keepWhere: false, label: '!keepWhere' }
- {os: windows-latest, r: 'devel', future_version: develop, label: 'w/ future-develop' }
- {os: ubuntu-latest, r: 'release', future_version: develop, label: 'w/ future-develop' }
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
R_KEEP_PKG_SOURCE: yes
R_REMOTES_NO_ERRORS_FROM_WARNINGS: true
## Test in other locale (optional)
LANGUAGE: ${{ matrix.config.language }}
## R CMD check
_R_CHECK_CRAN_INCOMING_: false
_R_CHECK_MATRIX_DATA_: true
_R_CHECK_SUGGESTS_ONLY_: true
_R_CHECK_THINGS_IN_TEMP_DIR_: true
## Specific to 'rcmdcheck'
RCMDCHECK_ERROR_ON: note
## Specific to futures
R_FUTURE_RNG_ONMISUSE: error
R_FUTURE_GLOBALS_KEEPWHERE: ${{ matrix.config.globals_keepWhere }}
R_FUTURE_VERSION: ${{ matrix.config.future_version }}
R_GLOBALS_VERSION: ${{ matrix.config.globals_version }}
steps:
- uses: actions/checkout@v4
- 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:
extra-packages: any::rcmdcheck
needs: check
- name: Install package itself (special case)
run: |
install.packages(".", repos = NULL, type = "source") ## needed by parallel workers
shell: Rscript {0}
- name: Test with specific future version?
run: |
globals_version <- Sys.getenv("R_GLOBALS_VERSION")
if (nzchar(globals_version)) {
install.packages("remotes")
remotes::install_github("futureverse/future", ref=globals_version)
}
future_version <- Sys.getenv("R_FUTURE_VERSION")
if (nzchar(future_version)) {
install.packages("remotes")
remotes::install_github("futureverse/future", ref=future_version)
}
shell: Rscript {0}
- name: Session info
run: |
options(width = 100)
parallelly::availableCores(which = "all")
sapply(c(physical_cores = FALSE, logical_cores = TRUE), parallel::detectCores)
if (require(RhpcBLASctl, quietly=TRUE)) c(get_num_procs = get_num_procs(), get_num_cores = get_num_cores(), blas_get_num_procs = blas_get_num_procs(), omp_get_num_procs = omp_get_num_procs(), omp_get_max_threads = omp_get_max_threads())
capabilities()
pkgs <- installed.packages()[, "Package"]
sessioninfo::session_info(pkgs, include_base = TRUE)
## Verify LANGUAGE settings by generating a translatable error
cat(sprintf("LANGUAGE=%s\n", sQuote(Sys.getenv("LANGUAGE"))))
cat(sprintf("locales: %s\n", sQuote(Sys.getlocale())))
tryCatch(log("a"), error = conditionMessage)
shell: Rscript {0}
- name: Check
run: |
if ("${{ matrix.config.strict }}" == "true") {
Sys.setenv(NOT_CRAN = "true")
Sys.setenv(R_FUTURE_GLOBALENV_ONMISUSE = "error")
Sys.setenv(R_FUTURE_RNG_ONMISUSE = "error")
Sys.setenv(R_FUTURE_FUTURE_EARLYSIGNAL = "defunct")
Sys.setenv(R_FUTURE_FUTURE_LOCAL = "defunct")
Sys.setenv(R_FUTURE_FUTURE_GC = "defunct")
Sys.setenv(R_FUTURE_PLAN_EARLYSIGNAL = "defunct")
Sys.setenv(R_FUTURE_RESOLVED_RUN = "defunct")
}
if (nzchar(Sys.getenv("R_FUTURE_PLAN"))) Sys.setenv(RCMDCHECK_ERROR_ON = "error")
rcmdcheck::rcmdcheck(
args = c("--no-manual", "--as-cran"),
check_dir = "check"
)
shell: Rscript {0}
- name: Upload check results
if: failure()
uses: actions/upload-artifact@v4
with:
name: ${{ runner.os }}-r${{ matrix.config.r }}-results
path: check