From: Eric Engestrom Date: Thu, 14 May 2020 20:51:38 +0000 (+0200) Subject: gitlab-ci: exclude scripts that don't affect the build X-Git-Url: https://git.libre-soc.org/?p=mesa.git;a=commitdiff_plain;h=576bff5c73ff217b15900982640dbf8f184569d5 gitlab-ci: exclude scripts that don't affect the build All the other files in bin/ are not used by any build system and as such cannot affect the build. I've been working on maintainer tools lately and it's frustrating to have the CI wait for 45 minutes to rebuild everything and not even read/run the files in the MR when it could've just been merged and moved on to the next MR 45 minutes ago. Signed-off-by: Eric Engestrom Acked-by: Tapani Pälli Reviewed-by: Dylan Baker Reviewed-by: Jose Fonseca Part-of: --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0fb1b5cf8a9..710934a0a7a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -30,7 +30,10 @@ stages: # automatically once all dependency jobs have passed - changes: &all_paths - VERSION - - bin/**/* + - bin/git_sha1_gen.py + - bin/install_megadrivers.py + - bin/meson_get_version.py + - bin/symbols-check.py # GitLab CI - .gitlab-ci.yml - .gitlab-ci/**/*