-
Notifications
You must be signed in to change notification settings - Fork 2
/
.travis.yml
38 lines (28 loc) · 945 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:
- hemperek@uni-bonn.de
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
#conda
- wget http://repo.continuum.io/miniconda/Miniconda-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
#cocotb
- git clone https://github.com/potentialventures/cocotb.git
- export COCOTB=$(pwd)/cocotb
- git clone -b v2.4.4 https://github.com/SiLab-Bonn/basil; cd basil; python setup.py develop; cd ..;
# Install basil
- python setup.py develop
script:
- cd tests; py.test -s