1
0
mirror of https://github.com/myhdl/myhdl.git synced 2025-01-24 21:52:56 +08:00
myhdl/.travis.yml
2019-03-12 17:51:12 +02:00

36 lines
571 B
YAML

dist: xenial
language: python
python:
- "3.7"
- "3.6"
- "pypy3.5"
install:
- pip install .
env:
- CI_TARGET=core
- CI_TARGET=iverilog
- CI_TARGET=ghdl
matrix:
allow_failures:
- python: "pypy3.5"
before_script:
- if [[ "$CI_TARGET" == "iverilog" ]]; then
sudo apt-get -qq update;
sudo apt-get install iverilog;
elif [[ "$CI_TARGET" == "ghdl" ]]; then
sudo add-apt-repository ppa:mati75/ghdl -y;
sudo apt-get -qq update;
sudo apt-get install ghdl;
fi
script: ./scripts/ci.sh
notifications:
email: false