Skip to content

Commit 9b10b7d

Browse files
committed
CI: Fix aarch64 publish jobs on x86
Change-Id: I5c69d288a427d708b42deadac872a3a7368181e3
1 parent 602a6f7 commit 9b10b7d

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.zuul.d/base.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,7 @@
139139
- ^LICENSE$
140140
- ^tox\.ini$
141141
vars:
142+
base_arch: "x86_64"
142143
publisher: false
143144
container_engine: "docker"
144145
extra-vars:

tests/playbooks/run.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
vars_files:
44
- ../vars/zuul.yml
55
vars:
6-
tag_suffix: "{{ '-aarch64' if ansible_architecture == 'aarch64' else '' }}"
6+
tag_suffix: "{{ '-aarch64' if base_arch == 'aarch64' else '' }}"
77
kolla_build_config:
88
DEFAULT:
99
debug: true
1010
logs_dir: "{{ kolla_build_logs_dir }}"
1111
quiet: true
1212
base: "{{ base_distro }}"
13-
base_arch: "{{ base_arch | default('x86_64') }}"
13+
base_arch: "{{ base_arch }}"
1414
engine: "{{ container_engine }}"
1515
template_override: /etc/kolla/template_overrides.j2
1616
# NOTE(yoctozepto): to avoid issues with IPv6 not enabled in the docker daemon

0 commit comments

Comments
 (0)