-
Notifications
You must be signed in to change notification settings - Fork 21
/
.travis.yml
55 lines (42 loc) · 1.61 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
#=========================================================================
# TravisCI Setup
#=========================================================================
#------------------------------------------------------------------------
# language and build matrix
#------------------------------------------------------------------------
dist: xenial
language: python
python:
- "3.7"
env:
- CONFIG="-v --tb=short --cov=./ --cov-report xml"
#------------------------------------------------------------------------
# install dependencies
#------------------------------------------------------------------------
install:
# Install packages
- sudo apt-get install -y graphviz
# Install verilator
- wget https://github.com/pymtl/verilator-travisci-cache/raw/master/verilator-travis-4.036.tar.gz
- tar -C ${HOME} -xzf verilator-travis-4.036.tar.gz
- export VERILATOR_ROOT=${HOME}/verilator
- export PATH=${VERILATOR_ROOT}/bin:${PATH}
- export PYMTL_VERILATOR_INCLUDE_DIR=${VERILATOR_ROOT}/share/verilator/include
- verilator --version
# Install PyMTL3
- pip install git+https://github.com/tancheng/pymtl3.git
- pip install hypothesis
- pip install codecov
- pip install pytest-cov
- pip list
#------------------------------------------------------------------------
# test runner
#------------------------------------------------------------------------
script:
- py.test ../ $CONFIG
#-------------------------------------------------------------------------
# after success
#-------------------------------------------------------------------------
after_success:
- codecov
- bash <(curl -s https://codecov.io/bash)