mirror of
https://github.com/myhdl/myhdl.git
synced 2024-12-14 07:44:38 +08:00
24 lines
313 B
YAML
24 lines
313 B
YAML
language: python
|
|
python:
|
|
- "2.6"
|
|
- "2.7"
|
|
- "pypy"
|
|
|
|
before_install:
|
|
- if [ $CI_TARGET == "icarus" ]; then
|
|
sudo apt-get update -qq;
|
|
sudo apt-get install -y iverilog;
|
|
fi
|
|
|
|
install:
|
|
- pip install .
|
|
|
|
env:
|
|
- CI_TARGET=core
|
|
- CI_TARGET=icarus
|
|
|
|
script: ./ci.sh
|
|
|
|
notifications:
|
|
email: false
|