Skip to content

Commit

Permalink
yices: Download gmp from ftp.gnu.org mirror instead of gmplib.org
Browse files Browse the repository at this point in the history
This link is much more reliable than the upstream gmplib.org download link, as
gmplib.org firewalls traffic from GitHub Actions IP addresses (see
https://www.theregister.com/2023/06/28/microsofts_github_gmp_project/).

Fixes #44.
  • Loading branch information
RyanGlScott committed Dec 18, 2023
1 parent 6782855 commit b4034a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ build_yices() {
mkdir -p install-root/include
mkdir -p install-root/lib

(cd repos && curl -o gmp.tar.lz -sL "https://gmplib.org/download/gmp/gmp-6.2.1.tar.lz" && tar xf gmp.tar.lz)
(cd repos && curl -o gmp.tar.lz -sL "https://ftp.gnu.org/gnu/gmp/gmp-6.2.1.tar.lz" && tar xf gmp.tar.lz)

pushd repos/gmp-6.2.1
./configure $CONFIGURE_FLAGS
Expand Down

0 comments on commit b4034a4

Please sign in to comment.