Library of reusable VHDL components
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
628 B

  1. language: c
  2. matrix:
  3. include:
  4. # Python 3.5 with ghdl llvm
  5. - env: BUILD_NAME=ACCEPTANCE
  6. os: linux
  7. sudo: required
  8. dist: trusty
  9. before_install:
  10. - sudo apt-get update -qq
  11. - sudo apt-get install -y gnat-4.8 zlib1g-dev
  12. - sudo apt-get install -y llvm-3.5-dev llvm-3.5-tools libedit-dev
  13. before_script:
  14. - cd ..
  15. - git clone --depth 1 https://github.com/tgingold/ghdl.git ghdl
  16. - cd ghdl
  17. - mkdir build-llvm
  18. - cd build-llvm
  19. - ../configure --with-llvm-config=llvm-config-3.5
  20. - make
  21. - sudo make install
  22. - cd ../..
  23. install: true
  24. script:
  25. - cd libvhdl/test; make all