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

37 lines
579 B
YAML
Raw Normal View History

# http://docs.travis-ci.com/user/workers/container-based-infrastructure/
sudo: false
2015-02-25 20:30:24 -08:00
language: python
python:
- "2.7"
- "pypy"
2015-03-11 08:07:34 -04:00
- "3.4"
2015-10-02 16:27:11 -04:00
- "3.5"
2015-02-25 20:30:24 -08:00
2016-03-01 17:25:23 +01:00
# binary install as per travis instructions
# used to install latest version of ghdl
# before_script:
# - ./scripts/install_ghdl.sh
# - export PATH=$PATH:$PWD/ghdl-0.33/bin/
2016-03-01 17:25:23 +01:00
addons:
2015-03-30 15:37:41 -04:00
apt:
2016-03-01 17:25:23 +01:00
# sources:
# - pgavin-ghdl
2015-03-30 15:37:41 -04:00
packages:
- iverilog
2016-03-01 17:25:23 +01:00
# - ghdl
2015-02-25 20:30:24 -08:00
install:
- pip install .
env:
- CI_TARGET=core
- CI_TARGET=iverilog
2015-03-03 18:19:29 -05:00
- CI_TARGET=ghdl
2015-02-25 20:30:24 -08:00
2015-04-18 18:33:04 -04:00
script: ./scripts/ci.sh
2015-02-25 20:41:56 -08:00
notifications:
email: false