forked from tensorflow/io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
52 lines (47 loc) · 1.28 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
dist: trusty
sudo: required
env:
- BAZEL_OS=linux
BAZEL_VERSION=0.17.2
services:
- docker
before_script:
- bash -x ${TRAVIS_BUILD_DIR}/tensorflow_io/kafka/python/kernel_tests/kafka_test.sh start kafka
- bash -x ${TRAVIS_BUILD_DIR}/tensorflow_io/ignite/python/tests/start_ignite.sh
matrix:
include:
- language: python
python:
- 2.7
before_install:
- bash -x ${TRAVIS_BUILD_DIR}/.travis/python.configure.sh
script:
- bash -x ${TRAVIS_BUILD_DIR}/.travis/python.test.sh
- language: python
python:
- 3.4
before_install:
- bash -x ${TRAVIS_BUILD_DIR}/.travis/python.configure.sh
script:
- bash -x ${TRAVIS_BUILD_DIR}/.travis/python.test.sh
- language: python
python:
- 3.5
before_install:
- bash -x ${TRAVIS_BUILD_DIR}/.travis/python.configure.sh
script:
- bash -x ${TRAVIS_BUILD_DIR}/.travis/python.test.sh
- language: python
python:
- 3.6
before_install:
- bash -x ${TRAVIS_BUILD_DIR}/.travis/python.configure.sh
script:
- bash -x ${TRAVIS_BUILD_DIR}/.travis/python.test.sh
- language: r
before_install:
- cd R-package
script:
- R -e "devtools::test()"
notifications:
email: false