forked from nextflow-io/nextflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
29 lines (29 loc) · 706 Bytes
/
.travis.yml
File metadata and controls
29 lines (29 loc) · 706 Bytes
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
sudo: required
language: groovy
jdk:
- openjdk8
services:
- docker
before_install:
- sudo apt-get -qq update
- sudo apt-get -qq -y install graphviz
- sudo pip install awscli
install:
- sudo apt-get install -y realpath
git:
submodules: true
env:
global:
- GRADLE_OPTS='-Dorg.gradle.daemon=false'
before_script:
- rm $HOME/.gitconfig
- mkdir -p "$HOME/.nextflow" && echo "providers.github.auth='$NXF_GITHUB_ACCESS_TOKEN'" > "$HOME/.nextflow/scm"
- make assemble
script:
- |
(set -e;
make test install;
./integration-tests.sh)
test_status=$?
if [[ "$test_status" != 0 && "$TRAVIS_PULL_REQUEST" == false ]]; then bash pub-tests.sh travis; fi
exit $test_status