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

38 lines
591 B
YAML
Raw Normal View History

2018-08-20 00:54:52 -07:00
dist: xenial
2015-02-25 20:30:24 -08:00
language: python
python:
2020-12-01 13:56:22 -06:00
- "3.9"
- "3.8"
2018-08-20 00:36:17 -07:00
- "3.7"
2018-08-20 01:06:29 -07:00
- "3.6"
- "pypy3.5"
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
2018-08-20 01:07:55 -07:00
matrix:
allow_failures:
- python: "pypy3.5"
2018-08-20 01:07:55 -07:00
2018-08-20 00:54:52 -07:00
before_script:
- if [[ "$CI_TARGET" == "iverilog" ]]; then
sudo apt-get -qq update;
sudo apt-get install iverilog;
elif [[ "$CI_TARGET" == "ghdl" ]]; then
2018-08-20 00:44:28 -07:00
sudo add-apt-repository ppa:mati75/ghdl -y;
sudo apt-get -qq update;
sudo apt-get install ghdl;
fi
2015-04-18 18:33:04 -04:00
script: ./scripts/ci.sh
2015-02-25 20:41:56 -08:00
notifications:
email: false