Browse Source

Finally fixed travis config

AHBL_BFM
T. Meissner 7 years ago
parent
commit
97cc66ae75
2 changed files with 7 additions and 7 deletions
  1. +6
    -6
      .travis.yml
  2. +1
    -1
      README.md

+ 6
- 6
.travis.yml View File

@ -1,9 +1,8 @@
language: python
language: c
matrix:
include:
# Python 3.5 with ghdl llvm
- env: BUILD_NAME=ACCEPTANCE
python: '3.5'
os: linux
sudo: required
dist: trusty
@ -12,16 +11,17 @@ matrix:
- 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:
- cd ..
- 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
- ../configure --with-llvm-config=llvm-config-3.5
- make
- make install
- cd ../../
- sudo make install
- cd ../..
install: true
script:
- export PATH=$PATH:install-ghdl-llvm/bin/; cd test; make all
- cd test; make all

+ 1
- 1
README.md View File

@ -6,7 +6,7 @@ A LGPL3 licensed library of reusable components for VHDL designs and testbenches
The intention of this library is not to realize the most optimized and highest performing code.
Instead it serves more as an example how to implement various things in VHDL and test them efficiently.
##sim
## sim
(Non-)synthesizable components for testbenches
##### AssertP (Deprecated, better use Alerts from OSVVM instead)


Loading…
Cancel
Save