]> Git Repo - buildroot-mgba.git/blame - .gitlab-ci.yml
utils/test-pkg: add gitlab-ci support
[buildroot-mgba.git] / .gitlab-ci.yml
CommitLineData
4f863d77
AV
1# Configuration for Gitlab-CI.
2# Builds appear on https://gitlab.com/buildroot.org/buildroot/pipelines
4f863d77 3
7f654438 4image: buildroot/base:20200814.2228
4f863d77 5
93a28709
RN
6stages:
7 - generate-gitlab-ci
8 - build
9
10generate-gitlab-ci-yml:
11 stage: generate-gitlab-ci
12 script: ./support/scripts/generate-gitlab-ci-yml support/misc/gitlab-ci.yml.in > generated-gitlab-ci.yml
13 artifacts:
12c7a05d 14 when: always
93a28709
RN
15 paths:
16 - generated-gitlab-ci.yml
12c7a05d
RN
17 - br-test-pkg/*/.config
18 - br-test-pkg/*/missing.config
93a28709
RN
19
20buildroot-pipeline:
21 stage: build
22 trigger:
23 include:
24 - artifact: generated-gitlab-ci.yml
25 job: generate-gitlab-ci-yml
26 strategy: depend
12c7a05d
RN
27 variables:
28 PARENT_PIPELINE_ID: $CI_PIPELINE_ID
This page took 0.395124 seconds and 4 git commands to generate.