comparison BC/travis-tests @ 3:2e3a23dd6c24 draft default tip

Uploaded
author melpetera
date Thu, 28 Feb 2019 05:12:34 -0500
parents
children
comparison
equal deleted inserted replaced
2:57edfd3943ab 3:2e3a23dd6c24
1 #!/bin/bash
2
3 set -ev
4
5 # Plain tests
6 if [[ -z $PLANEMO ]] ; then
7
8 sudo sed -i -e '$adeb http://cran.univ-paris1.fr/bin/linux/ubuntu trusty/' /etc/apt/sources.list
9 sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys E084DAB9
10 sudo apt-get update
11 sudo apt-get install -y --no-install-recommends r-base
12 sudo R -e "install.packages(c('batch', 'ade4', 'RUnit'), dependencies = TRUE, repos = 'https://cloud.r-project.org/')"
13 sudo R -e 'source("http://bioconductor.org/biocLite.R") ; biocLite(c("pcamethods", "ropls"))'
14 make test
15
16 # Planemo tests
17 else
18 sudo apt-get update
19 sudo apt-get install -y python-virtualenv
20 make planemolint
21 make planemotest
22 fi