-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
38 lines (29 loc) · 987 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
language: python
python:
- 2.7
sudo: required
dist: trusty
notifications:
email:
before_install:
- sudo add-apt-repository -y ppa:team-electronics/ppa
- sudo apt-get update
install:
- sudo apt-get -y install iverilog-daily
- sudo apt-get install -qq libhdf5-serial-dev
# Install conda
- wget http://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh -O miniconda.sh
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH=$HOME/miniconda/bin:$PATH
- conda update --yes conda
- conda install --yes numpy bitarray pytest pyyaml numba mock matplotlib scipy pytables bokeh pandas progressbar
# Install cocotb
- git clone https://github.com/potentialventures/cocotb.git
- export COCOTB=$(pwd)/cocotb
- export SIM=icarus
# Install basil
- git clone -b v2.4.4 https://github.com/SiLab-Bonn/basil; cd basil; python setup.py develop; cd ..;
- python setup.py develop
script:
- cd tests; py.test -s