Skip to content
Snippets Groups Projects
apertis-ostree-pack.yaml 834 B
{{- $architecture := or .architecture "amd64" }}
{{- $type := or .type "minimal" -}}
{{- $suite := or .suite "v2019dev0" -}}
{{- $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