Skip to content
Snippets Groups Projects
Commit 8a2fa312 authored by Ulrik Stervbo's avatar Ulrik Stervbo
Browse files

Reformatting

parent 34041855
No related branches found
No related tags found
No related merge requests found
......@@ -19,9 +19,9 @@ cache:
# Use a cache for each branch
# For usage of keys, see https://docs.gitlab.com/ee/ci/caching/#sharing-caches-across-the-same-branch
key: ${CI_COMMIT_REF_SLUG}
paths:
- ${RENV_PATHS_CACHE}
- ${RENV_PATHS_LIBRARY}
paths:
- ${RENV_PATHS_CACHE}
- ${RENV_PATHS_LIBRARY}
before_script:
......@@ -42,36 +42,36 @@ before_script:
setup:
stage: setup
script:
# Restore renv
- Rscript -e 'renv::restore()'
# Install devtools for the case it is not used
- Rscript -e 'install.packages(c("devtools", "covr"))'
script:
# Restore renv
- Rscript -e 'renv::restore()'
# Install devtools for the case it is not used
- Rscript -e 'install.packages(c("devtools", "covr"))'
check:
stage: check
dependencies:
- setup
when: on_success
script:
- 'apt-get install -y -qq pandoc'
# Make sure the renv cache and lib paths are in .Rbuildignore
- echo "^.renv$" >> .Rbuildignore
- Rscript -e 'devtools::check(check_dir = Sys.getenv("CHECK_DIR"))'
artifacts:
paths:
- $BUILD_LOGS_DIR/00install.out
- $BUILD_LOGS_DIR/00check.log
expire_in: 1 week
dependencies:
- setup
when: on_success
script:
- 'apt-get install -y -qq pandoc'
# Make sure the renv cache and lib paths are in .Rbuildignore
- echo "^.renv$" >> .Rbuildignore
- Rscript -e 'devtools::check(check_dir = Sys.getenv("CHECK_DIR"))'
artifacts:
paths:
- $BUILD_LOGS_DIR/00install.out
- $BUILD_LOGS_DIR/00check.log
expire_in: 1 week
coverage:
stage: coverage
dependencies:
- check
when: on_success
only:
- master
script:
- Rscript -e 'covr::package_coverage(type = c("tests", "examples"))'
dependencies:
- check
when: on_success
only:
- master
script:
- Rscript -e 'covr::package_coverage(type = c("tests", "examples"))'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment