-
Notifications
You must be signed in to change notification settings - Fork 5
/
.travis.yml
32 lines (32 loc) · 1.06 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
language: python
sudo: false
python: 3.6
os: linux
services: docker
addons:
apt:
packages:
- oracle-java8-installer
matrix:
include:
- env:
- CWL_TEST_V1=1 CWL_NAME_LIST="hi-c-processing-pairs hi-c-processing-bam pairs-patch addfragtopairs pairsam-filter pairsam-markasdup merge-pairs pairsam-merge pairsam-parse-sort extract-mcool-normvector-for-juicebox md5 fastqc-0-11-4-1 cool2mcool bwa-mem md5-validate"
install:
- pip install schema_salad
- pip install cwltool==1.0.20181201184214 # for v1
script:
- set -e;
for CWL_NAME in $CWL_NAME_LIST; do
source tests/tests_v1.sh $CWL_NAME;
done;
set +e;
- env:
- WDL_TEST=1 CROMWELL_JAR=cromwell.jar WDL_NAME_LIST="bwa-mem"
install:
- wget https://github.com/broadinstitute/cromwell/releases/download/29/cromwell-29.jar -O $CROMWELL_JAR
script:
- set -e;
for WDL_NAME in $WDL_NAME_LIST; do
source tests/tests_wdl.sh $WDL_NAME $CROMWELL_JAR;
done;
set +e;