AMR/.gitlab-ci.yml

48 lines
2.1 KiB
YAML
Raw Normal View History

2018-10-23 14:59:36 +02:00
# from https://stackoverflow.com/questions/51866926
2018-10-23 19:49:31 +02:00
# and https://github.com/jangorecki/r.gitlab.ci
2018-10-24 21:56:29 +02:00
# and https://docs.gitlab.com/ce/ci/yaml/README.html
# how the Docker+R images work: https://hub.docker.com/r/rocker/r-ver/
2018-10-25 18:20:39 +02:00
R 3:
2018-10-31 13:42:35 +01:00
image: rocker/r-ver:3 # test on R v3.*.*
2018-12-10 10:13:40 +01:00
allow_failure: true
2018-10-24 19:40:07 +02:00
script:
2018-12-24 12:12:05 +01:00
- apt-get update
# install dependencies for package
- apt-get install --yes --no-install-recommends libxml2-dev libssl-dev libcurl4-openssl-dev zlib1g-dev
2018-12-24 17:12:04 +01:00
- Rscript -e 'install.packages(c("devtools", "rlang"), repos = "https://cran.rstudio.com")'
- Rscript -e 'devtools::install_dev_deps(repos = "https://cran.rstudio.com")'
2018-12-24 12:12:05 +01:00
# remove vignettes folder and get VignetteBuilder field out of DESCRIPTION file
- rm -rf vignettes
- Rscript -e 'd <- read.dcf("DESCRIPTION"); d[, colnames(d) == "VignetteBuilder"] <- NA; write.dcf(d, "DESCRIPTION")'
# build package
- R CMD build . --no-build-vignettes --no-manual
- PKG_FILE_NAME=$(ls -1t *.tar.gz | head -n 1)
- R CMD check "${PKG_FILE_NAME}" --no-build-vignettes --no-manual --as-cran
# code coverage
- apt-get install --yes git
- Rscript -e 'cc <- covr::package_coverage(); covr::codecov(coverage = cc, token = "50ffa0aa-fee0-4f8b-a11d-8c7edc6d32ca"); cat("Code coverage:", covr::percent_coverage(cc))'
2018-10-31 12:10:49 +01:00
coverage: '/Code coverage: \d+\.\d+/'
2018-10-27 21:02:50 +02:00
artifacts:
paths:
2018-12-24 12:12:05 +01:00
- '*.Rcheck/*.log'
- '*.Rcheck/*.out'
2018-12-24 13:39:48 +01:00
# - '*.Rcheck/*.fail'
2018-12-24 12:12:05 +01:00
- '*.Rcheck/*.Rout'
2018-10-31 12:10:49 +01:00
name: 'Rcheck log'
2018-10-27 21:02:50 +02:00
expire_in: '1 month'
2018-12-24 12:12:05 +01:00
2018-12-24 13:21:47 +01:00
pages:
2018-12-24 12:12:05 +01:00
image: debian:buster-slim
script:
2018-12-24 13:39:48 +01:00
- apt-get update && apt-get -y install libxml2-dev libssl-dev libcurl4-openssl-dev pandoc r-base
2018-12-24 17:12:04 +01:00
- Rscript -e "install.packages(c('pkgdown', 'devtools'), repos = 'https://cran.rstudio.com')"
- Rscript -e "devtools::install_dev_deps(repos = 'https://cran.rstudio.com')"
2018-12-24 16:54:23 +01:00
- Rscript -e "devtools::install(build = TRUE, upgrade = FALSE)"
2018-12-29 22:24:19 +01:00
# - R -e "pkgdown::build_favicon()"
- R -e "pkgdown::build_site(examples = FALSE)"
2018-12-24 12:12:05 +01:00
artifacts:
paths:
- public
only:
- master