-
Denis Pynkin authored
If variable "collection_id" is set during the images build the Collection ID would be added into remote's configuration. Signed-off-by:
Denis Pynkin <denis.pynkin@collabora.com>
Denis Pynkin authoredIf variable "collection_id" is set during the images build the Collection ID would be added into remote's configuration. Signed-off-by:
Denis Pynkin <denis.pynkin@collabora.com>
apertis-ostree-pack.yaml 830 B
{{- $architecture := or .architecture "amd64" }}
{{- $type := or .type "minimal" -}}
{{- $suite := or .suite "18.12" -}}
{{- $ospack := or .ospack (printf "ostree-pack_%s-%s-%s" $suite $architecture $type) -}}
{{- $board := or .board "lxc" -}}
{{- $repourl := or .repourl "https://images.apertis.org/ostree/repo" -}}
{{- $osname := or .osname "apertis" -}}
{{- $branch := or .branch (printf "%s/%s/%s-%s/%s" $osname $suite $architecture $board $type) -}}
{{- $ostree := or .ostree "repo" -}}
architecture: {{ $architecture }}
actions:
- action: ostree-deploy
repository: {{ $ostree }}
remote_repository: {{ $repourl }}
branch: {{ $branch }}
os: {{ $osname }}
{{ if .collection_id }}
collection-id: {{ .collection_id }}
{{ end }}
- action: pack
compression: gz
file: {{ $ospack }}.tar.gz