Module: Mesa Branch: main Commit: a6d05e68634cc7b26da87fa879eaa4864143c1a6 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=a6d05e68634cc7b26da87fa879eaa4864143c1a6
Author: Guilherme Gallo <[email protected]> Date: Fri Dec 10 16:02:58 2021 -0300 ci: Add a630_skqp jobs Start Xorg during skqp job, since it is needed to make rendered tests work. There are 1 new job, namely `a630_skqp` which runs GL and GLES backends and then the skqp GPU unittests. Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/5580 Signed-off-by: Guilherme Gallo <[email protected]> Reviewed-by: Emma Anholt <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/14146> --- .gitlab-ci.yml | 5 +++++ src/freedreno/ci/gitlab-ci.yml | 9 +++++++++ 2 files changed, 14 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2dec40bd511..f7efd2661cb 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1362,3 +1362,8 @@ debian-mingw32-x86_64: variables: HWCI_TEST_SCRIPT: "/install/deqp-runner.sh" FDO_CI_CONCURRENT: 0 # Default to number of CPUs + +.baremetal-skqp-test: + variables: + HWCI_START_XORG: 1 + HWCI_TEST_SCRIPT: "/install/skqp-runner.sh" diff --git a/src/freedreno/ci/gitlab-ci.yml b/src/freedreno/ci/gitlab-ci.yml index c0242adfc28..3684c67ab10 100644 --- a/src/freedreno/ci/gitlab-ci.yml +++ b/src/freedreno/ci/gitlab-ci.yml @@ -205,6 +205,15 @@ a630_gles_asan: DEQP_EXPECTED_RENDERER: FD630 GPU_VERSION: freedreno-a630-asan +a630_skqp: + extends: + - .baremetal-skqp-test + - .a630-test + variables: + # Possible skqp backends: gl, gles, unitTest and vk + # Note: vk backend is not working yet. + SKQP_BACKENDS: gl gles unitTest # space separated values + a630_vk: extends: - .a630-test
