CI: publish AArch64 Debian/source images

We want to test upgrades on aarch64. For this we need to publish images.

AArch64 images will get "-aarch64" added to tag to not collide with
x86-64 ones.

Change-Id: Ibae2578b4bc18c0ab7fcc1840c39bb86659ab920
This commit is contained in:
Marcin Juszkiewicz 2020-03-19 12:12:28 +01:00
parent 42c64cc6ad
commit c2a3380707
2 changed files with 9 additions and 1 deletions

View File

@ -11,9 +11,11 @@
periodic:
jobs:
- kolla-publish-debian-source
- kolla-publish-debian-source-aarch64
release:
jobs:
- kolla-publish-debian-source
- kolla-publish-debian-source-aarch64
- kolla-publish-debian-binary
- job:
@ -63,3 +65,8 @@
publisher: true
secrets:
- kolla_dockerhub_creds
- job:
name: kolla-publish-debian-source-aarch64
parent: kolla-publish-debian-source
nodeset: kolla-debian-buster-aarch64

View File

@ -2,7 +2,8 @@
debug = true
{% if publisher %}
namespace = kolla
tag = {{ (zuul.tag if zuul.pipeline == "release" else zuul.branch | basename) }}
{% set tag_suffix = '-aarch64' if ansible_architecture == 'aarch64' else '' %}
tag = {{ (zuul.tag if zuul.pipeline == "release" else zuul.branch | basename) ~ tag_suffix }}
{% endif %}
push = false
logs_dir = {{ kolla_build_logs_dir }}