93a2870966
Since Gitlab 12.9, Gitlab allow to trigger child pipeline with generated configuration file. See: https://gitlab.com/gitlab-org/gitlab/-/issues/35632 This allow us to stop updating the .gitlab-ci.yml file when a new defconfig is added to Buildroot. Remove check-gitlab-ci.yml job since it is now uneeded. Remove .gitlab-ci.yml make target. Signed-off-by: Romain Naour <romain.naour@gmail.com> Cc: Arnout Vandecappelle <arnout@mind.be> [ann.morin.1998@free.fr: manual: no longer needed to update at all] Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
24 lines
557 B
YAML
24 lines
557 B
YAML
# Configuration for Gitlab-CI.
|
|
# Builds appear on https://gitlab.com/buildroot.org/buildroot/pipelines
|
|
|
|
image: buildroot/base:20191027.2027
|
|
|
|
stages:
|
|
- generate-gitlab-ci
|
|
- build
|
|
|
|
generate-gitlab-ci-yml:
|
|
stage: generate-gitlab-ci
|
|
script: ./support/scripts/generate-gitlab-ci-yml support/misc/gitlab-ci.yml.in > generated-gitlab-ci.yml
|
|
artifacts:
|
|
paths:
|
|
- generated-gitlab-ci.yml
|
|
|
|
buildroot-pipeline:
|
|
stage: build
|
|
trigger:
|
|
include:
|
|
- artifact: generated-gitlab-ci.yml
|
|
job: generate-gitlab-ci-yml
|
|
strategy: depend
|