1
0
mirror of https://github.com/myhdl/myhdl.git synced 2025-01-24 21:52:56 +08:00
myhdl/.travis.yml
2018-08-20 01:06:29 -07:00

35 lines
614 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
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