1
0
mirror of https://github.com/myhdl/myhdl.git synced 2025-01-24 21:52:56 +08:00

try to fix ghdl path for travis

This commit is contained in:
Jan Decaluwe 2018-02-21 21:34:04 +01:00
parent 212792f98a
commit 5abf86d329

View File

@ -2,7 +2,7 @@ if [ "$CI_TARGET" == "iverilog" ]; then
sudo apt-get -qq update
sudo apt-get install iverilog
elif [ "$CI_TARGET" == "ghdl" ]; then
url=$(curl -s https://api.github.com/repos/tgingold/ghdl/releases/latest | jq -r ".assets[] | select (.name | test (\"ubuntu1_amd64\"))| .browser_download_url")
url=$(curl -s https://api.github.com/repos/ghdl/ghdl/releases/latest | jq -r ".assets[] | select (.name | test (\"ubuntu14\"))| .browser_download_url")
curl -Lo ghdl.deb $url
sudo dpkg -i ghdl.deb
sudo apt-get install -f