From 97cc66ae75417578e6edc4b36d9290adf1f0440c Mon Sep 17 00:00:00 2001 From: tmeissner Date: Wed, 6 Sep 2017 16:16:12 +0200 Subject: [PATCH] Finally fixed travis config --- .travis.yml | 12 ++++++------ README.md | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index d8bb0e5..de51b24 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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 diff --git a/README.md b/README.md index 54a143a..89aa86c 100644 --- a/README.md +++ b/README.md @@ -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)