From: Yann E. MORIN Date: Wed, 20 Dec 2017 14:19:33 +0000 (+0100) Subject: gitlab-ci: add .config to artefacts X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2438d9058985324c8066d708f2ed32d94ec2dcf0;p=buildroot.git gitlab-ci: add .config to artefacts The defconfig is dumped at the very beginning of the build log, but the resulting .config is still interesting to get, in case some settings did not end up in there (e.g. because of the host gcc version, or because of conflicting settings, or because the Config.in changed without the tests being updated, or...). So, add the .config to the list of artefacts to save. Signed-off-by: "Yann E. MORIN" Cc: Ricardo Martincoski Cc: Thomas Petazzoni Cc: Arnout Vandecappelle Acked-by: Ricardo Martincoski Signed-off-by: Thomas Petazzoni --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c81697920b..ef2e3a4918 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -61,6 +61,7 @@ check-package: expire_in: 2 weeks paths: - test-output/*.log + - test-output/*/.config - test-output/*/images/* acmesystems_aria_g25_128mb_defconfig: *defconfig acmesystems_aria_g25_256mb_defconfig: *defconfig diff --git a/.gitlab-ci.yml.in b/.gitlab-ci.yml.in index 9a1e7a1e34..f763fdd454 100644 --- a/.gitlab-ci.yml.in +++ b/.gitlab-ci.yml.in @@ -61,4 +61,5 @@ check-package: expire_in: 2 weeks paths: - test-output/*.log + - test-output/*/.config - test-output/*/images/*