mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-26 23:13:27 +08:00
fcceee0b2e
... so we can catch regressions on check-package. Update to the new docker image that was pushed after the previous commit. Signed-off-by: Ricardo Martincoski <ricardo.martincoski@gmail.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
29 lines
721 B
YAML
29 lines
721 B
YAML
# Configuration for Gitlab-CI.
|
|
# Builds appear on https://gitlab.com/buildroot.org/buildroot/pipelines
|
|
|
|
image: $CI_REGISTRY/buildroot.org/buildroot/base:20220206.1324
|
|
|
|
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:
|
|
when: always
|
|
paths:
|
|
- generated-gitlab-ci.yml
|
|
- br-test-pkg/*/.config
|
|
- br-test-pkg/*/missing.config
|
|
|
|
buildroot-pipeline:
|
|
stage: build
|
|
trigger:
|
|
include:
|
|
- artifact: generated-gitlab-ci.yml
|
|
job: generate-gitlab-ci-yml
|
|
strategy: depend
|
|
variables:
|
|
PARENT_PIPELINE_ID: $CI_PIPELINE_ID
|