forked from hirofumi0810/neural_sp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
46 lines (35 loc) · 781 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
44
45
46
notifications:
email: false
dist: xenial
language: python
os: linux
python:
- "3.7"
cache:
- pip
- ccache
sudo: false
install:
- travis_retry ./test/install.sh
script:
- ./test/test_python.sh
- ./test/test_training.sh
after_success:
- bash <(curl -s https://codecov.io/bash)
env:
- PYTORCH_VERSION=1.0.0 CC=gcc-7 CXX=g++-7
- PYTORCH_VERSION=1.1.0 CC=gcc-7 CXX=g++-7
- PYTORCH_VERSION=1.3.0 CC=gcc-7 CXX=g++-7
- PYTORCH_VERSION=1.4.0 CC=gcc-7 CXX=g++-7
- PYTORCH_VERSION=1.5.0 CC=gcc-7 CXX=g++-7
- PYTORCH_VERSION=1.6.0 CC=gcc-7 CXX=g++-7
- PYTORCH_VERSION=1.7.1 CC=gcc-7 CXX=g++-7
- PYTORCH_VERSION=1.8.1 CC=gcc-7 CXX=g++-7
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- cmake
- g++-7
- sox