OSDN Git Service

gitlab-ci: add PowerPC build
authorEric Engestrom <eric.engestrom@intel.com>
Sat, 16 Nov 2019 11:13:36 +0000 (11:13 +0000)
committerEric Engestrom <eric.engestrom@intel.com>
Sat, 23 Nov 2019 00:37:06 +0000 (00:37 +0000)
Signed-off-by: Eric Engestrom <eric.engestrom@intel.com>
Reviewed-by: Michel Dänzer <mdaenzer@redhat.com>
.gitlab-ci.yml
.gitlab-ci/debian-install.sh

index 43465ef..27b9b1a 100644 (file)
@@ -14,7 +14,7 @@
 # repository's registry will be used there as well.
 variables:
   UPSTREAM_REPO: mesa/drm
-  DEBIAN_TAG: "2019-11-12"
+  DEBIAN_TAG: "2019-11-16"
   DEBIAN_VERSION: buster-slim
   DEBIAN_IMAGE: "$CI_REGISTRY_IMAGE/debian/$DEBIAN_VERSION:$DEBIAN_TAG"
 
@@ -106,6 +106,11 @@ meson-armhf:
   variables:
     CROSS: armhf
 
+meson-ppc64el:
+  extends: meson-x86_64
+  variables:
+    CROSS: ppc64el
+
 meson-arch-daily:
   rules:
     - if: '$SCHEDULE == "arch-daily"'
index 6b779e6..b2f1a79 100644 (file)
@@ -4,7 +4,7 @@ set -o xtrace
 
 export DEBIAN_FRONTEND=noninteractive
 
-CROSS_ARCHITECTURES=(i386 armhf arm64)
+CROSS_ARCHITECTURES=(i386 armhf arm64 ppc64el)
 for arch in ${CROSS_ARCHITECTURES[@]}; do
   dpkg --add-architecture $arch
 done