forked from common-workflow-language/cwltool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
43 lines (40 loc) · 836 Bytes
/
.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
33
34
35
36
37
38
39
40
41
42
43
dist: trusty
sudo: required
services:
- docker
before_install:
- wget -O- http://neuro.debian.net/lists/trusty.us-nh.full | sudo tee /etc/apt/sources.list.d/neurodebian.sources.list
- sudo apt-key add .travis.singularity_key.txt
- sudo apt-get update
- sudo apt-get install -y singularity-container
language: python
cache:
pip: true
directories:
- .mypy_cache
os:
- linux
install:
- pip install tox-travis
jobs:
include:
- stage: test
python: "2.7"
- stage: test
python: "3.4"
- stage: test
python: "3.5"
- stage: test
python: "3.6"
- stage: test
python: "3.7"
dist: xenial
- stage: release-test
python: "2.7"
script: RELEASE_SKIP=head ${TRAVIS_BUILD_DIR}/release-test.sh
script: tox
branches:
only:
- master
notifications:
email: false