From 0b246d3558d6e82c83b5017166cbf8730ea0b5f1 Mon Sep 17 00:00:00 2001 From: Samuel Pitoiset Date: Mon, 18 Nov 2019 09:30:27 +0100 Subject: [PATCH] gitlab-ci: add a new base test job for VK MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Samuel Pitoiset Reviewed-by: Michel Dänzer --- .gitlab-ci.yml | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 70a440cd5b6..581fb8c2ed2 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -459,14 +459,12 @@ scons-old-llvm: script: - LLVM_VERSION=3.9 .gitlab-ci/scons-build.sh -.test-gl: +.test: extends: - .ci-run-policy stage: test variables: GIT_STRATEGY: none # testing doesn't build anything from source - TAG: *x86_test-gl - image: "$CI_REGISTRY_IMAGE/debian/x86_test-gl:$TAG" before_script: # Note: Build dir (and thus install) may be dirty due to GIT_STRATEGY - rm -rf install @@ -479,10 +477,27 @@ scons-old-llvm: - results/ dependencies: - meson-testing + +.test-gl: + extends: + - .test + variables: + TAG: *x86_test-gl + image: "$CI_REGISTRY_IMAGE/debian/x86_test-gl:$TAG" needs: - meson-testing - x86_test-gl +.test-vk: + extends: + - .test + variables: + TAG: *x86_test-vk + image: "$CI_REGISTRY_IMAGE/debian/x86_test-vk:$TAG" + needs: + - meson-testing + - x86_test-vk + .piglit-test: extends: .test-gl artifacts: -- 2.30.2