From 9ce6bcc4a2f8168d81c96d9869a35676af1b166f Mon Sep 17 00:00:00 2001
From: Alexander Wellbrock <a.wellbrock@mailbox.org>
Date: Sat, 23 Jan 2021 15:21:22 +0100
Subject: [PATCH] CI: adapt new build-ah-engine 2.0 interface

---
 .gitlab-ci.yml | 20 ++++++++++++++++++--
 1 file changed, 18 insertions(+), 2 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 0944c84..1d0a278 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,9 +1,25 @@
 include:
   - project: 'container-library/build-ah-engine'
     ref: feature/multiarch
-    file: '/gitlab-ci-template.yml'
+    file: '/gitlab-ci-template-manifest.yml'
+
+stages:
+  - build
+  - tag
 
 variables:
   GIT_SUBMODULE_STRATEGY: 'recursive'
-  CI_CONTAINER_BUILD_ARCHS: "amd64:arm64"
   CI_REGISTRY_IMAGE_VERSION: "0.5.2"
+
+container-build-x86_64:
+  extends: .container-build
+  tags:
+    - x86_64
+
+container-build-aarch64:
+  extends: .container-build
+  tags:
+    - aarch64
+
+container-manifest:
+  stage: tag
\ No newline at end of file
-- 
GitLab