afa17853b7
Commit 71b8322712
updated the Dockerfile
to be used in CI tests. In order to actually use this new docker image,
update .gitlab-ci.yml to point to the docker image that was created with
the updated Dockerfile.
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Reviewed-by: Romain Naour <romain.naour@gmail.com>
Tested-by: Romain Naour <romain.naour@gmail.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
29 lines
694 B
YAML
29 lines
694 B
YAML
# Configuration for Gitlab-CI.
|
|
# Builds appear on https://gitlab.com/buildroot.org/buildroot/pipelines
|
|
|
|
image: buildroot/base:20210922.2200
|
|
|
|
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
|