Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
i2dash
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
loosolab
software
i2dash
Commits
dd259e09
Commit
dd259e09
authored
5 years ago
by
jens.preussner
Browse files
Options
Downloads
Patches
Plain Diff
Added CI for i2dash
parent
be16a274
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#95990
failed
5 years ago
Stage: build
Stage: check
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.ci/requirements.txt
+6
-0
6 additions, 0 deletions
.ci/requirements.txt
.ci/setup.sh
+17
-0
17 additions, 0 deletions
.ci/setup.sh
.gitlab-ci.yml
+33
-0
33 additions, 0 deletions
.gitlab-ci.yml
with
56 additions
and
0 deletions
.ci/requirements.txt
0 → 100644
+
6
−
0
View file @
dd259e09
r-assertive.sets
r-base
r-flexdashboard
r-knitr
r-yaml
zip
\ No newline at end of file
This diff is collapsed.
Click to expand it.
.ci/setup.sh
0 → 100644
+
17
−
0
View file @
dd259e09
#!/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
This diff is collapsed.
Click to expand it.
.gitlab-ci.yml
0 → 100644
+
33
−
0
View file @
dd259e09
image
:
continuumio/miniconda3:4.5.13
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/*
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment