2015-02-25 20:30:24 -08:00
|
|
|
language: python
|
|
|
|
python:
|
|
|
|
- "2.6"
|
|
|
|
- "2.7"
|
|
|
|
- "pypy"
|
2015-03-11 08:07:34 -04:00
|
|
|
- "3.4"
|
2015-02-25 20:30:24 -08:00
|
|
|
|
2015-02-26 11:54:45 -08:00
|
|
|
before_install:
|
|
|
|
- if [ $CI_TARGET == "icarus" ]; then
|
|
|
|
sudo apt-get update -qq;
|
|
|
|
sudo apt-get install -y iverilog;
|
2015-03-03 18:19:29 -05:00
|
|
|
elif [ $CI_TARGET == "ghdl" ]; then
|
|
|
|
sudo apt-add-repository -y ppa:pgavin/ghdl;
|
|
|
|
sudo apt-get update -qq;
|
|
|
|
sudo apt-get install -y ghdl;
|
2015-02-26 11:54:45 -08:00
|
|
|
fi
|
|
|
|
|
2015-02-25 20:30:24 -08:00
|
|
|
install:
|
|
|
|
- pip install .
|
|
|
|
|
|
|
|
env:
|
|
|
|
- CI_TARGET=core
|
|
|
|
- CI_TARGET=icarus
|
2015-03-03 18:19:29 -05:00
|
|
|
- CI_TARGET=ghdl
|
2015-02-25 20:30:24 -08:00
|
|
|
|
2015-03-11 08:07:34 -04:00
|
|
|
matrix:
|
|
|
|
allow_failures:
|
|
|
|
- python: "3.4"
|
|
|
|
|
2015-02-25 20:30:24 -08:00
|
|
|
script: ./ci.sh
|
2015-02-25 20:41:56 -08:00
|
|
|
|
|
|
|
notifications:
|
|
|
|
email: false
|