From ab8c802aa16c9f143bae094d54785000aa8e3b9e Mon Sep 17 00:00:00 2001 From: Jan Decaluwe Date: Wed, 21 Feb 2018 22:07:51 +0100 Subject: [PATCH] try another fix --- scripts/ci_deps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ci_deps.sh b/scripts/ci_deps.sh index 21f2cb93..2b731efd 100755 --- a/scripts/ci_deps.sh +++ b/scripts/ci_deps.sh @@ -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/ghdl/ghdl/releases/latest | jq -r ".assets[] | select (.name | test (\"ubuntu14\"))| .browser_download_url") + url=$(curl -s https://api.github.com/repos/ghdl/ghdl/releases/tag/v0.33 | jq -r ".assets[] | select (.name | test (\"ubuntu1_amd64\"))| .browser_download_url") curl -Lo ghdl.deb $url sudo dpkg -i ghdl.deb sudo apt-get install -f