From ded4f3003dbdf272f65f07a71bc0b6b5d91862eb Mon Sep 17 00:00:00 2001 From: Matthew Johnson Date: Wed, 27 Sep 2017 10:57:20 -0700 Subject: [PATCH] Travis: Use github as upstream for check Recent outages to sourceforge break Travis CI runs. Use the github release instead and update to the latest version of libcheck (0.11.0). Signed-off-by: Matthew Johnson --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 59296e6..e855f0c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,9 +11,9 @@ before_install: - sudo apt-get install -y libmagic-dev install: - - wget http://downloads.sourceforge.net/project/check/check/0.10.0/check-0.10.0.tar.gz - - tar -xvf check-0.10.0.tar.gz - - pushd check-0.10.0 && ./configure --prefix=/usr && make -j48 && sudo make install && popd + - wget https://github.com/libcheck/check/releases/download/0.11.0/check-0.11.0.tar.gz + - tar -xvf check-0.11.0.tar.gz + - pushd check-0.11.0 && ./configure --prefix=/usr && make -j48 && sudo make install && popd - wget https://github.com/clearlinux/bsdiff/releases/download/v1.0.2/bsdiff-1.0.2.tar.xz - tar -xvf bsdiff-1.0.2.tar.xz - pushd bsdiff-1.0.2 && ./configure --prefix=/usr --disable-tests && make -j48 && sudo make install && popd