aboutsummaryrefslogtreecommitdiff
path: root/.install_yosys.sh
diff options
context:
space:
mode:
authorJack Koenig2018-05-29 14:41:18 -0700
committerJack Koenig2018-05-30 14:17:28 -0700
commitbc18d2d785079b76ac970373f667de1fc7e4a1e2 (patch)
tree69848255a63cf39bdba9262911d63382ec8e3c4e /.install_yosys.sh
parent430a8afb2cf42e9eef438c7ea38934113de0bbcf (diff)
Improve Travis configuration and revert Yosys version
* Switch Yosys back to 0.7 with patch for moved ABC repo * Add 30 min timeout for LEC tests * h/t https://stackoverflow.com/questions/43918874#44007537 * Move Travis building of Verilator and Yosys to prelude stage * Don't use automatic Travis Scala tests, do it manually
Diffstat (limited to '.install_yosys.sh')
-rw-r--r--.install_yosys.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/.install_yosys.sh b/.install_yosys.sh
index 2c627ab1..a9ab9c25 100644
--- a/.install_yosys.sh
+++ b/.install_yosys.sh
@@ -5,7 +5,9 @@ if [ ! -f $INSTALL_DIR/bin/yosys ]; then
git clone https://github.com/cliffordwolf/yosys.git
cd yosys
git pull
- git checkout master
+ git checkout yosys-0.7
+ # Workaround moving ABC repo
+ git apply ../.fix_yosys_abc.patch
make
make PREFIX=$INSTALL_DIR install
fi