From ac86b17a8d8f55a8d8d663a1904c41b3e31c129f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Danis?= <frederic.danis@collabora.com>
Date: Fri, 22 Feb 2019 17:09:50 +0100
Subject: [PATCH] Create sample recipe to build uboot image using ostree
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

APERTIS-5675

This uses the new Recipe action to merged previous recipes in one.

Signed-off-by: Frédéric Danis <frederic.danis@collabora.com>
---
 apertis-ostree-commit.yaml       |  3 ++
 apertis-sample-ostree-uboot.yaml | 52 ++++++++++++++++++++++++++++++++
 2 files changed, 55 insertions(+)
 create mode 100644 apertis-sample-ostree-uboot.yaml

diff --git a/apertis-ostree-commit.yaml b/apertis-ostree-commit.yaml
index 6a458367..9ab3571c 100644
--- a/apertis-ostree-commit.yaml
+++ b/apertis-ostree-commit.yaml
@@ -9,12 +9,15 @@
 {{ $image := or .image (printf "apertis-ostree-%s-%s-%s" $suite  $type $architecture) }}
 {{ $ostree := or .ostree "repo" }}
 {{ $message := or .message "Update" }}
+{{- $included_recipe := or .included_recipe "false"}}
 
 architecture: {{ $architecture }}
 
 actions:
+{{- if ne $included_recipe "true" }}
   - action: unpack
     file: {{ $ospack }}.tar.gz
+{{- end }}
 
   - action: overlay
     description: "Install ostree feature"
diff --git a/apertis-sample-ostree-uboot.yaml b/apertis-sample-ostree-uboot.yaml
new file mode 100644
index 00000000..ea25c4fa
--- /dev/null
+++ b/apertis-sample-ostree-uboot.yaml
@@ -0,0 +1,52 @@
+{{- $architecture := "armhf" }}
+{{- $type := "minimal" }}
+{{- $mirror := "https://repositories.apertis.org/apertis/" }}
+{{- $suite := "18.12" }}
+{{- $timestamp := "00000000.0" }}
+{{- $image := (printf "apertis-sample-%s-%s-%s_%s" $suite  $type $architecture $timestamp) }}
+
+{{ $board := "uboot" }}
+{{ $osname := "apertis" }}
+{{ $branch := (printf "%s/%s/%s-%s/%s" $osname $suite $architecture $board $type) }}
+{{ $ostree := "repo" }}
+{{ $repourl := (printf "${ARTIFACTDIR}/%s" $ostree) }}
+
+architecture: {{ $architecture }}
+
+actions:
+  - action: run
+    description: Create local OSTree repository
+    chroot: false
+    command: ostree init --mode archive --repo=${ARTIFACTDIR}/{{ $ostree }}
+
+  - action: recipe
+    description: Create ospack for {{ $suite }} {{ $type }} {{ $architecture }}
+    recipe: apertis-ospack-{{ $type }}.yaml
+    variables:
+      type: {{ $type }}
+      mirror: {{ $mirror }}
+      suite: {{ $suite }}
+      timestamp: {{ $timestamp }}
+
+  - action: recipe
+    description: OSTree commit for {{ $suite }} {{ $type }} {{ $architecture }}
+    recipe: apertis-ostree-commit.yaml
+    variables:
+      type: {{ $type }}
+      suite: {{ $suite }}
+      timestamp: {{ $timestamp }}
+      board: {{ $board }}
+      branch: {{ $branch }}
+      ostree: {{ $ostree }}
+
+  - action: recipe
+    description: Create image {{ $image }} for {{ $suite }} {{ $type }} {{ $architecture }}
+    recipe: apertis-ostree-image-uboot.yaml
+    variables:
+      type: {{ $type }}
+      suite: {{ $suite }}
+      image: {{ $image }}
+      board: {{ $board }}
+      repourl: {{ $repourl }}
+      branch: {{ $branch }}
+      ostree: {{ $ostree }}
-- 
GitLab