Newer
Older
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
default:
image: pqiao/sirplus_dev
stages:
- build
- document
- check
- test
- deploy
variables:
_R_CHECK_CRAN_INCOMING_: "false"
_R_CHECK_FORCE_SUGGESTS_: "true"
CODECOV_TOKEN: "2329aed3-de38-468c-9a06-95564363211c"
buildbinary:
tags:
- docker
image: pqiao/sirplus_dev
stage: build
script:
- R -e 'devtools::build(binary = TRUE)'
documentation:
tags:
- docker
image: pqiao/sirplus_dev
stage: document
script:
- R -e 'devtools::document()'
checkerrors:
tags:
- docker
image: pqiao/sirplus_dev
stage: check
script:
- R -e 'devtools::check(error_on = c("error"),document = FALSE, args = "--no-tests")'