.gitlab-ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-)
New commits: commit db2faed91c0d809b5eb264edd41fef3b5a4a9568 Author: Albert Astals Cid <[email protected]> Date: Sun Nov 24 10:15:52 2019 +0100 CI: savannah git is down, use tarballs diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f2c87f63..2dba0f3c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -83,8 +83,9 @@ build_android: stage: build image: kdeorg/android-aarch64-sdk before_script: - - git clone https://git.savannah.gnu.org/git/freetype/freetype2.git --single-branch -b VER-2-8-1 - - pushd freetype2 + - wget https://download.savannah.gnu.org/releases/freetype/freetype-2.10.1.tar.xz + - tar xvfh freetype-2.10.1.tar.xz + - pushd freetype-2.10.1 - CFLAGS=-std=gnu99 /opt/helpers/build-standalone "./autogen.sh && ./configure --enable-shared=no --prefix=/opt/popplerandroid-deps --host=${ANDROID_NDK_TOOLCHAIN_PREFIX} && make -j`nproc` && make install" - popd script: _______________________________________________ poppler mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/poppler
