summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorArkadiusz Hiler <arkadiusz.hiler@intel.com>2019-09-04 11:29:35 +0300
committerArkadiusz Hiler <arkadiusz.hiler@intel.com>2019-09-04 15:04:56 +0300
commit86edcea1c49908bf6e9d5f78d55e3586612a17df (patch)
tree83e1cedbf30947f43db74f1a840cb27a8a902f50 /.gitlab-ci.yml
parent04eac35177ba046ce55c495e510bc49443ec7429 (diff)
.gitlab-ci: Produce a list of undocumented tests
We have a requirement that all new tests should be documented using igt_describe() & family since 2f273018ac42 ("CONTRIBUTING: Rework a bit and update"). Let's start actually enforcing that by having this as a part of the CI. For consumption by: https://gitlab.freedesktop.org/gfx-ci/i915-infra/merge_requests/55 Cc: Petri Latvala <petri.latvala@intel.com> Reviewed-by: Petri Latvala <petri.latvala@intel.com> Signed-off-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml9
1 files changed, 9 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 17378df5..d465c79a 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -237,6 +237,15 @@ test:test-list-diff:
stage: test
script: diff <(sed "s/ /\n/g" meson-test-list.txt| grep -v 'vc4\|v3d\|panfrost' | sort) <(sed "s/ /\n/g" autotools-test-list.txt | sort)
+test:list-undocumented-tests:
+ dependencies:
+ - build:tests-fedora
+ stage: test
+ script: .gitlab-ci/list_undocumented_tests.py build/tests/test-list.txt > undocumented_tests.txt
+ artifacts:
+ paths:
+ - undocumented_tests.txt
+
################### DEPLOY #########################
pages: