gitlab-ci: defconfig_check is included in defconfig build

When we build the defconfigs, we already check they are correct, so
there is no need to run the correctness check explicitly.

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>
Acked-by: Romain Naour <romain.naour@gmail.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
This commit is contained in:
Yann E. MORIN 2020-09-06 22:12:23 +02:00
parent bca0f1bb41
commit bc8ee069d2

View File

@ -47,9 +47,10 @@ gen_defconfigs() {
esac
for cfg in "${defconfigs[@]}"; do
printf '%s_check: { extends: .defconfig_check }\n' "${cfg}"
if ${build_defconfigs}; then
printf '%s: { extends: .defconfig }\n' "${cfg}"
else
printf '%s_check: { extends: .defconfig_check }\n' "${cfg}"
fi
done
}