Module: Mesa Branch: master Commit: a77834cecf20f89da80c1e80ba2624fa319493e1 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=a77834cecf20f89da80c1e80ba2624fa319493e1
Author: Pierre-Eric Pelloux-Prayer <[email protected]> Date: Wed Jan 27 12:02:06 2021 +0100 ci: split src/mesa/**/* matching rule Split the rule to avoid running useless tests when touching the driver specific sources. v2: removed src/mesa/drivers/x11/**/* Reviewed-by: Eric Engestrom <[email protected]> Reviewed-by: Eric Anholt <[email protected]> (v2) Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/8735> --- .gitlab-ci/test-source-dep.yml | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci/test-source-dep.yml b/.gitlab-ci/test-source-dep.yml index dbb226b8ad9..6b37d99b8b8 100644 --- a/.gitlab-ci/test-source-dep.yml +++ b/.gitlab-ci/test-source-dep.yml @@ -30,7 +30,23 @@ - src/include/**/* - src/loader/**/* - src/mapi/**/* - - src/mesa/**/* + - src/mesa/* + - src/mesa/drivers/* + - src/mesa/drivers/common/**/* + - src/mesa/drivers/dri/* + - src/mesa/drivers/dri/common/**/* + - src/mesa/main/**/* + - src/mesa/math/**/* + - src/mesa/program/**/* + - src/mesa/sparc/**/* + - src/mesa/state_tracker/**/* + - src/mesa/swrast/**/* + - src/mesa/swrast_setup/**/* + - src/mesa/tnl/**/* + - src/mesa/tnl_dd/**/* + - src/mesa/vbo/**/* + - src/mesa/x86/**/* + - src/mesa/x86-64/**/* - src/util/**/* # Gallium core source file dependencies _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
