1
0
mirror of https://github.com/myhdl/myhdl.git synced 2025-01-24 21:52:56 +08:00
myhdl/.travis.yml
Keerthan Jaic dedc1ae3e0 rename icarus to iverilog, GHDL to ghdl
This matches the name of the corresponding simulator's binary.
py.test can use this to verify is a simulator is installed before
running conversion tests
2015-07-18 13:48:16 -04:00

38 lines
519 B
YAML

# http://docs.travis-ci.com/user/workers/container-based-infrastructure/
sudo: false
language: python
python:
- "2.6"
- "2.7"
- "pypy"
- "3.4"
addons:
apt:
sources:
- pgavin-ghdl
packages:
- iverilog
- ghdl
install:
- pip install .
env:
- CI_TARGET=core
- CI_TARGET=iverilog
- CI_TARGET=ghdl
matrix:
allow_failures:
- python: "3.4"
env: CI_TARGET=iverilog
- python: "3.4"
env: CI_TARGET=ghdl
script: ./scripts/ci.sh
notifications:
email: false