Browse Source

Add support for travis-ci

AHBL_BFM
T. Meissner 7 years ago
parent
commit
ca45771353
1 changed files with 28 additions and 0 deletions
  1. +28
    -0
      .travis.yml

+ 28
- 0
.travis.yml View File

@ -0,0 +1,28 @@
language: c
matrix:
include:
# Python 3.5 with ghdl llvm
- env: BUILD_NAME=ACCEPTANCE
python: '3.5'
os: linux
sudo: required
dist: trusty
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y gnat-4.8 zlib1g-dev
- sudo apt-get install -y llvm-3.5-dev llvm-3.5-tools libedit-dev
before_script:
- git clone --depth 1 https://github.com/tgingold/ghdl.git ghdl
- cd ghdl
- mkdir build-llvm
- cd build-llvm
- ../configure --prefix=../../install-ghdl-llvm/ --with-llvm-config=llvm-config-3.5
- make
- make install
- cd ../../
- export PATH=$PATH:install-ghdl-llvm/bin/
install: true
script:
- cd test; make all

Loading…
Cancel
Save