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
33 lines (33 loc) · 724 Bytes
/
.travis.yml
File metadata and controls
33 lines (33 loc) · 724 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
30
31
32
33
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:
matrix:
- TEST_JDK=
- TEST_JDK=9
- TEST_JDK=10
- TEST_JDK=11
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
after_script:
- if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then bash pub-tests.sh travis; fi