diff options
author | Eric Engestrom <[email protected]> | 2019-10-14 23:53:15 +0100 |
---|---|---|
committer | Eric Engestrom <[email protected]> | 2019-10-15 17:42:39 +0100 |
commit | 3bcd54f3fc2051dfb49d8c6afeb1f18f7cd9c0b7 (patch) | |
tree | 62a7c018b187113ea092f8a6c285a8579e9ccbd8 /.gitlab-ci.yml | |
parent | aba78c2d389c83877d88d6ad9ff5c519e9e676a7 (diff) |
gitlab-ci: set a common job parent for test stage
Signed-off-by: Eric Engestrom <[email protected]>
Reviewed-by: Michel Dänzer <[email protected]>
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5d1fb4292fc..258430d4449 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -384,11 +384,17 @@ scons-old-llvm: - LLVM_VERSION=4.0 .gitlab-ci/scons-build.sh - LLVM_VERSION=5.0 .gitlab-ci/scons-build.sh -.deqp-test: - extends: .use-debian-10 +.test: + extends: .ci-run-policy stage: test variables: GIT_STRATEGY: none # testing doesn't build anything from source + +.deqp-test: + extends: + - .test + - .use-debian-10 + variables: DEQP_SKIPS: deqp-default-skips.txt script: # Note: Build dir (and thus install) may be dirty due to GIT_STRATEGY |