mirror of
https://github.com/msberends/AMR.git
synced 2024-12-26 21:26:12 +01:00
pages upload
This commit is contained in:
parent
92a32b62a7
commit
cf44d94552
@ -2,15 +2,24 @@
|
|||||||
# and https://github.com/jangorecki/r.gitlab.ci
|
# and https://github.com/jangorecki/r.gitlab.ci
|
||||||
# and https://docs.gitlab.com/ce/ci/yaml/README.html
|
# and https://docs.gitlab.com/ce/ci/yaml/README.html
|
||||||
# how the Docker+R images work: https://hub.docker.com/r/rocker/r-ver/
|
# how the Docker+R images work: https://hub.docker.com/r/rocker/r-ver/
|
||||||
R 3:
|
|
||||||
image: rocker/r-ver:3 # test on R v3.*.*
|
stages:
|
||||||
allow_failure: true
|
- build
|
||||||
script:
|
- deploy
|
||||||
|
|
||||||
|
image: rocker/r-ver:3 # test on R v3.*.*
|
||||||
|
|
||||||
|
before_script:
|
||||||
- apt-get update
|
- apt-get update
|
||||||
# install dependencies for package
|
# install dependencies for package
|
||||||
- apt-get install --yes --no-install-recommends libxml2-dev libssl-dev libcurl4-openssl-dev zlib1g-dev
|
- apt-get install --yes --no-install-recommends libxml2-dev libssl-dev libcurl4-openssl-dev zlib1g-dev pandoc
|
||||||
- Rscript -e 'install.packages(c("devtools", "rlang"), repos = "https://cran.rstudio.com")'
|
- Rscript -e 'install.packages(c("devtools", "rlang"), repos = "https://cran.rstudio.com")'
|
||||||
- Rscript -e 'devtools::install_dev_deps(repos = "https://cran.rstudio.com")'
|
- Rscript -e 'devtools::install_dev_deps(repos = "https://cran.rstudio.com")'
|
||||||
|
|
||||||
|
R 3:
|
||||||
|
stage: build
|
||||||
|
allow_failure: true
|
||||||
|
script:
|
||||||
# remove vignettes folder and get VignetteBuilder field out of DESCRIPTION file
|
# remove vignettes folder and get VignetteBuilder field out of DESCRIPTION file
|
||||||
- rm -rf vignettes
|
- rm -rf vignettes
|
||||||
- Rscript -e 'd <- read.dcf("DESCRIPTION"); d[, colnames(d) == "VignetteBuilder"] <- NA; write.dcf(d, "DESCRIPTION")'
|
- Rscript -e 'd <- read.dcf("DESCRIPTION"); d[, colnames(d) == "VignetteBuilder"] <- NA; write.dcf(d, "DESCRIPTION")'
|
||||||
@ -32,14 +41,12 @@ R 3:
|
|||||||
expire_in: '1 month'
|
expire_in: '1 month'
|
||||||
|
|
||||||
pages:
|
pages:
|
||||||
image: debian:buster-slim
|
stage: deploy
|
||||||
script:
|
script:
|
||||||
- apt-get update && apt-get -y install libxml2-dev libssl-dev libcurl4-openssl-dev pandoc r-base
|
- Rscript -e "install.packages('pkgdown', repos = 'https://cran.rstudio.com')"
|
||||||
- Rscript -e "install.packages(c('pkgdown', 'devtools'), repos = 'https://cran.rstudio.com')"
|
|
||||||
- Rscript -e "devtools::install_dev_deps(repos = 'https://cran.rstudio.com')"
|
|
||||||
- Rscript -e "devtools::install(build = TRUE, upgrade = FALSE)"
|
- Rscript -e "devtools::install(build = TRUE, upgrade = FALSE)"
|
||||||
# - R -e "pkgdown::build_favicon()"
|
# - R -e "pkgdown::build_favicon()"
|
||||||
- R -e "pkgdown::build_site(examples = FALSE)"
|
- R -e "pkgdown::build_site(examples = FALSE, override = list(destination = 'public'))"
|
||||||
artifacts:
|
artifacts:
|
||||||
paths:
|
paths:
|
||||||
- public
|
- public
|
||||||
|
Loading…
Reference in New Issue
Block a user