From 576bff5c73ff217b15900982640dbf8f184569d5 Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Thu, 14 May 2020 22:51:38 +0200 Subject: [PATCH 1/1] gitlab-ci: exclude scripts that don't affect the build MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 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: --- .gitlab-ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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/**/* -- 2.30.2