From: Eric Engestrom Date: Mon, 28 Jan 2019 18:05:22 +0000 (+0000) Subject: gitlab-ci: add meson gallium ST Clover (LLVM 5.0) build X-Git-Tag: upstream/19.3.0~9991 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b5a70af062510b61bbd6d57fe26933ee3788e5be;p=platform%2Fupstream%2Fmesa.git gitlab-ci: add meson gallium ST Clover (LLVM 5.0) build Signed-off-by: Eric Engestrom --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 45c0ee6..979cbad 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -228,6 +228,26 @@ build:meson-gallium-drivers-other: GALLIUM_DRIVERS: "i915,nouveau,kmsro,r300,r600,freedreno,svga,swrast,v3d,vc4,virgl,etnaviv" LLVM_VERSION: "5.0" +build:meson-gallium-clover-llvm5: + extends: .meson-build + variables: + UNWIND: "true" + DRI_LOADERS: > + -D glx=disabled + -D egl=false + -D gbm=false + GALLIUM_ST: > + -D dri3=false + -D gallium-vdpau=false + -D gallium-xvmc=false + -D gallium-omx=disabled + -D gallium-va=false + -D gallium-xa=false + -D gallium-nine=false + -D gallium-opencl=icd + GALLIUM_DRIVERS: "r600" + LLVM_VERSION: "5.0" + build:make-vulkan: extends: .make-build variables: diff --git a/.gitlab-ci/Dockerfile.ubuntu b/.gitlab-ci/Dockerfile.ubuntu index 4dae37f..1f334ed 100644 --- a/.gitlab-ci/Dockerfile.ubuntu +++ b/.gitlab-ci/Dockerfile.ubuntu @@ -28,6 +28,9 @@ RUN apt-get install -y \ llvm-5.0-dev \ llvm-6.0-dev \ llvm-7-dev \ + clang-5.0 \ + libclang-5.0-dev \ + libclc-dev \ xz-utils \ libexpat1-dev \ libx11-xcb-dev \ diff --git a/.travis.yml b/.travis.yml index f80473a..662466e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -55,32 +55,6 @@ matrix: - python3-pip - python3-setuptools - env: - - LABEL="meson Gallium ST Clover LLVM-5.0" - - BUILD=meson - - UNWIND="true" - - DRI_LOADERS="-Dglx=disabled -Degl=false -Dgbm=false" - - GALLIUM_ST="-Ddri3=false -Dgallium-vdpau=false -Dgallium-xvmc=false -Dgallium-omx=disabled -Dgallium-va=false -Dgallium-xa=false -Dgallium-nine=false -Dgallium-opencl=icd" - - GALLIUM_DRIVERS="r600" - - LLVM_VERSION=5.0 - - LLVM_CONFIG="llvm-config-${LLVM_VERSION}" - addons: - apt: - packages: - - libclc-dev - # LLVM packaging is broken and misses these dependencies - - libedit-dev - - llvm-5.0-dev - - clang-5.0 - - libclang-5.0-dev - # Common - - xz-utils - - libexpat1-dev - - libx11-xcb-dev - - libelf-dev - - libunwind8-dev - - python3-pip - - python3-setuptools - - env: - LABEL="meson Gallium ST Clover LLVM-6.0" - BUILD=meson - UNWIND="true"