Skip to content
Snippets Groups Projects
Commit c5ed97bb authored by arsenij.ustjanzew's avatar arsenij.ustjanzew
Browse files
parents 1d854911 d9952e0b
No related branches found
No related tags found
No related merge requests found
Pipeline #96003 passed
r-assertive.sets
r-base
r-flexdashboard
r-knitr
r-yaml
zip
\ No newline at end of file
#!/bin/bash
set -eo pipefail
#
# Set up correct channel order
#
conda config --system --add channels defaults
conda config --system --add channels bioconda
conda config --system --add channels conda-forge
#
# Install packages from requirements
#
conda install -q -y --file .ci/requirements.txt
conda clean -q -y --all
image: continuumio/miniconda3:4.5.11
stages:
- build
- check
before_script:
- .ci/setup.sh
build:
stage: build
tags:
- docker
script:
- R CMD build .
artifacts:
paths:
- i2dash_*.tar.gz
name: "$CI_COMMIT_REF_NAME-builds"
check:
stage: check
tags:
- docker
variables:
http_proxy: http://www-proxy.t-online.de:80
R_ZIPCMD: /opt/conda/bin/zip
script:
- R CMD check *tar.gz --as-cran --no-manual
artifacts:
expire_in: 1 week
paths:
- i2dash.Rcheck/*
......@@ -13,6 +13,7 @@ Encoding: UTF-8
LazyData: true
RoxygenNote: 6.1.1
Imports:
magrittr,
knitr,
flexdashboard,
yaml,
......
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