mirror of
https://salsa.debian.org/raspi-team/image-specs
synced 2026-05-30 06:38:09 +02:00
It's unclear (to me) what they filter out. And why. https://salsa.debian.org/help/ci/yaml/index#only-except says: "NOTE: only and except are not being actively developed. rules is the preferred keyword to control when to add jobs to pipelines." So if filtering is desired, it should be added using the 'rules' keyword and the reasoning behind it should be clarified in comments and/or commit messages.
23 lines
644 B
YAML
23 lines
644 B
YAML
stages:
|
|
- build
|
|
|
|
variables:
|
|
DEBIAN_FRONTEND: "noninteractive"
|
|
# At https://salsa.debian.org/salsa-ci-team/pipeline/container_registry one can see which images are available
|
|
SALSA_CI_IMAGES: registry.salsa.debian.org/salsa-ci-team/pipeline
|
|
BASE_CI_IMAGES: ${SALSA_CI_IMAGES}/base
|
|
|
|
build-yamls:
|
|
stage: build
|
|
image: $BASE_CI_IMAGES:unstable
|
|
dependencies: []
|
|
script:
|
|
- apt-get update && apt-get install -y vmdb2 dosfstools qemu-utils qemu-user-static debootstrap binfmt-support time kpartx bmap-tools python3 fakemachine make
|
|
- make yaml
|
|
- mkdir build
|
|
- cp raspi*.yaml build
|
|
artifacts:
|
|
paths:
|
|
- build
|
|
|