1
0
mirror of https://github.com/myhdl/myhdl.git synced 2024-12-14 07:44:38 +08:00
myhdl/.travis.yml
2018-08-20 11:39:03 -07:00

39 lines
665 B
YAML

# http://docs.travis-ci.com/user/workers/container-based-infrastructure/
dist: xenial
sudo: true
language: python
python:
- "3.7"
- "3.6"
- "2.7"
- "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