mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-04 06:10:16 +03:00
gitlab-ci: handle single defconfig in script
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr> Cc: Romain Naour <romain.naour@gmail.com> Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com> Cc: Arnout Vandecappelle <arnout@mind.be> Reviewed-by: Romain Naour <romain.naour@gmail.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
This commit is contained in:
@@ -40,7 +40,13 @@ gen_defconfigs() {
|
||||
fi
|
||||
case "${CI_COMMIT_REF_NAME}" in
|
||||
# For the branch or tag name named *-defconfigs, create a pipeline.
|
||||
(*-defconfigs) build_defconfigs=true;;
|
||||
(*-defconfigs)
|
||||
build_defconfigs=true
|
||||
;;
|
||||
(*-*_defconfig)
|
||||
defconfigs=( "${CI_COMMIT_REF_NAME##*-}" )
|
||||
build_defconfigs=true
|
||||
;;
|
||||
esac
|
||||
|
||||
for cfg in "${defconfigs[@]}"; do
|
||||
|
||||
Reference in New Issue
Block a user