Skip to content

Commit 6f1d22f

Browse files
authored
install R on osx gitlab runner (#6398)
* install R on osx * add no-manual flag
1 parent 2b7d3da commit 6f1d22f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.gitlab-ci.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -272,6 +272,7 @@ test-win-old:
272272
tags:
273273
- saas-macos-medium-m1
274274
before_script:
275+
- if ! command -v R &> /dev/null || ! command -v Rscript &> /dev/null; then brew install r; fi
275276
- *install-deps
276277
- cp $(ls -1t bus/build/data.table_*.tar.gz | head -n 1) .
277278
after_script:
@@ -288,7 +289,7 @@ test-mac-rel:
288289
variables:
289290
R_VERSION: "$R_REL_VERSION"
290291
script:
291-
- R CMD check $(ls -1t data.table_*.tar.gz | head -n 1)
292+
- R CMD check --no-manual $(ls -1t data.table_*.tar.gz | head -n 1)
292293
- R CMD INSTALL --build $(ls -1t data.table_*.tar.gz | head -n 1)
293294

294295
## integrate artifacts

0 commit comments

Comments
 (0)