From: Niels Möller Date: Tue, 30 Jun 2020 09:30:28 +0000 (+0200) Subject: gitlab-ci: Add cross tests for big-endian powerpc64. X-Git-Tag: nettle_3.7rc1~101 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2d694156ca3eb30934d1007529d8b78fe061e289;p=thirdparty%2Fnettle.git gitlab-ci: Add cross tests for big-endian powerpc64. --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f0923eb6..3fc70b1b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -142,6 +142,7 @@ Debian.cross.x86: - apt-get update -q # remove any previously installed nettle headers to avoid conflicts - for arch in armhf mips arm64 ppc64el;do apt-get remove -y nettle-dev:$arch;done + - if [ "$host" == "powerpc64-linux-gnu" ];then apt-get update && apt-get install -y gcc-$host g++-$host && export QEMU_LD_PREFIX=/usr/$host;fi - if [ "$host" == "powerpc64le-linux-gnu" ];then apt-get update && apt-get install -y gcc-$host g++-$host && export QEMU_LD_PREFIX=/usr/$host;fi script: - build=$(dpkg-architecture -qDEB_HOST_GNU_TYPE) @@ -166,5 +167,7 @@ Debian.cross.mips-linux-gnu: <<: *Debian_cross_template Debian.cross.aarch64-linux-gnu: <<: *Debian_cross_template +Debian.cross.powerpc64-linux-gnu: + <<: *Debian_cross_template Debian.cross.powerpc64le-linux-gnu: <<: *Debian_cross_template