summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorMichel Dänzer <mdaenzer@redhat.com>2019-12-13 11:02:16 +0100
committerMichel Dänzer <michel@daenzer.net>2020-01-07 11:00:16 +0100
commit5f0ff004ca8f0e59270f0ea4dc8f13c74ce88e2b (patch)
treec712fc606d695f0ccc3acbb1ff8e5f9b591ecc83 /.gitlab-ci.yml
parent4cd3dc94ad7ba991c960457b9134ce233b5b41ab (diff)
gitlab-ci: Test against LLVM / clang 9 on x86
They're not available for Debian buster yet, so we have to use upstream snapshot packages again. In contrast to earlier, we now store the LLVM APT repository key in Git instead of re-downloading it every time.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml17
1 files changed, 9 insertions, 8 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index b7298bcea45..b3589987cb8 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -96,7 +96,7 @@ x86_build:
- .debian@container-ifnot-exists
- .container
variables:
- DEBIAN_TAG: &x86_build "2019-11-13"
+ DEBIAN_TAG: &x86_build "2020-01-07"
.use-x86_build:
variables:
@@ -109,13 +109,13 @@ x86_build:
x86_test-gl:
extends: x86_build
variables:
- DEBIAN_TAG: &x86_test-gl "2019-12-18"
+ DEBIAN_TAG: &x86_test-gl "2020-01-07"
# Debian 10 based x86 test image for VK
x86_test-vk:
extends: x86_build
variables:
- DEBIAN_TAG: &x86_test-vk "2019-12-18"
+ DEBIAN_TAG: &x86_test-vk "2020-01-07"
# Can only be triggered manually on personal branches because RADV is the only
# driver that does Vulkan testing at the moment.
rules:
@@ -215,6 +215,8 @@ arm_test:
extends:
- .build-linux
- .use-x86_build
+ variables:
+ LLVM_VERSION: 9
script:
- .gitlab-ci/meson-build.sh
@@ -268,7 +270,6 @@ meson-main:
-D gallium-nine=true
-D gallium-opencl=disabled
GALLIUM_DRIVERS: "iris,nouveau,kmsro,r300,r600,freedreno,swr,swrast,svga,v3d,vc4,virgl,etnaviv,panfrost,lima,zink"
- LLVM_VERSION: "7"
EXTRA_OPTION: >
-D osmesa=gallium
-D tools=all
@@ -320,6 +321,7 @@ meson-arm64:
- .ci-deqp-artifacts
variables:
BUILDTYPE: "debugoptimized"
+ LLVM_VERSION: "8"
VULKAN_DRIVERS: "freedreno,amd"
script:
- .gitlab-ci/meson-build.sh
@@ -334,8 +336,8 @@ meson-clang:
DRI_DRIVERS: "auto"
GALLIUM_DRIVERS: "auto"
VULKAN_DRIVERS: intel,amd,freedreno
- CC: "ccache clang-8"
- CXX: "ccache clang++-8"
+ CC: "ccache clang-9"
+ CXX: "ccache clang++-9"
.meson-windows:
extends:
@@ -425,7 +427,6 @@ meson-vulkan:
-D cpp_args=-fno-sanitize-recover=all
UBSAN_OPTIONS: "print_stacktrace=1"
VULKAN_DRIVERS: intel,amd,freedreno
- LLVM_VERSION: "8"
EXTRA_OPTION: >
-D vulkan-overlay-layer=true
@@ -462,7 +463,7 @@ scons:
SCONS_CHECK_COMMAND: "scons llvm=1 force_scons=1 check"
script:
- SCONS_TARGET="" SCONS_CHECK_COMMAND="scons check force_scons=1" .gitlab-ci/scons-build.sh
- - LLVM_VERSION=8 .gitlab-ci/scons-build.sh
+ - LLVM_VERSION=9 .gitlab-ci/scons-build.sh
scons-old-llvm:
extends: