-
Notifications
You must be signed in to change notification settings - Fork 8
/
.travis.yml
68 lines (60 loc) · 1.51 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
sudo: required
dist: trusty
language: python
stages:
- lint
- test
jobs:
include:
- stage: lint
services:
- docker
env:
- JOB=lint
env:
- JOB=test_py3_lint
- IMG=tensorflow/tensorflow
install:
- docker pull $IMG
script:
- docker run -t --rm -v `pwd`:/root/lbn -w /root/lbn $IMG bash -c "pip install flake8; flake8 lbn.py test.py setup.py"
- stage: test
services:
- docker
env:
- JOB=test_py2_tf1
- IMG=tensorflow/tensorflow:1.15.2
install:
- docker pull $IMG
script:
- docker run -t --rm -v `pwd`:/root/lbn -w /root/lbn $IMG python -m unittest test
- stage: test
services:
- docker
env:
- JOB=test_py3_tf1
- IMG=tensorflow/tensorflow:1.15.2-py3
install:
- docker pull $IMG
script:
- docker run -t --rm -v `pwd`:/root/lbn -w /root/lbn $IMG python -m unittest test
- stage: test
services:
- docker
env:
- JOB=test_py2_tf2
- IMG=tensorflow/tensorflow:2.1.0
install:
- docker pull $IMG
script:
- docker run -t --rm -v `pwd`:/root/lbn -w /root/lbn $IMG python -m unittest test
- stage: test
services:
- docker
env:
- JOB=test_py3_tf2
- IMG=tensorflow/tensorflow:2.4.0
install:
- docker pull $IMG
script:
- docker run -t --rm -v `pwd`:/root/lbn -w /root/lbn $IMG python -m unittest test