From: whitequark Date: Wed, 16 Jan 2019 00:57:09 +0000 (+0000) Subject: Travis: install SymbiYosys and Yices2. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=40de8cb60f4a86de201a6fe904fcc5152f309cab;p=nmigen.git Travis: install SymbiYosys and Yices2. In preparation for adding formal tests. --- diff --git a/.travis.yml b/.travis.yml index d4dccf4..4bd98bf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,12 +7,18 @@ cache: directories: - "$HOME/.ccache" - "$HOME/.local" +addons: + apt: + packages: + - gperf before_install: - export PATH="/usr/lib/ccache:$HOME/.local/bin:$PATH" install: - pip install coverage codecov pyvcd bitarray - git clone https://github.com/YosysHQ/yosys - (cd yosys && if ! yosys -V || [ $(git rev-parse HEAD $(yosys -V | awk 'match($0,/sha1 ([0-9a-f]+)/,m) { print m[1] }') | uniq | wc -l) != 1 ]; then make CONFIG=gcc ENABLE_ABC=0 PREFIX=$HOME/.local install; fi) + - (git clone https://github.com/YosysHQ/SymbiYosys && cd SymbiYosys && make PREFIX=$HOME/.local install) + - if ! yices -V; then (git clone https://github.com/SRI-CSL/yices2.git && cd yices2 && autoconf && ./configure --prefix=$HOME/.local && make && make install); fi script: - coverage run -m unittest discover - codecov