Let's at least verify tier-0 and tier-x can build fine. Ideally in the future we actually run some tests on the resulting image, though let's wait until this CI is migrated to Konflux before doing that.
15 lines
472 B
YAML
15 lines
472 B
YAML
---
|
|
include:
|
|
- remote: https://gitlab.com/platform-engineering-org/gitlab-ci/-/raw/main/templates/build-image.gitlab-ci.yml
|
|
|
|
build-image:
|
|
extends: .build-image
|
|
parallel:
|
|
matrix:
|
|
- TIER: [tier-0, tier-1, tier-x]
|
|
variables:
|
|
EXTRA_ARGS: "--security-opt=label=disable --cap-add=all --build-arg MANIFEST=fedora-$TIER.yaml"
|
|
rules:
|
|
- if: $CI_PROJECT_NAMESPACE != "fedora/bootc"
|
|
when: never
|
|
- if: $CI_PIPELINE_SOURCE == "merge_request_event"
|