Make Element Call fail during validation if on an unsupported architecture (like arm32)

This commit is contained in:
Slavi Pantaleev
2025-03-15 08:14:49 +02:00
parent a757b515fb
commit 9c24064fb6
2 changed files with 11 additions and 0 deletions

View File

@ -6,6 +6,13 @@
---
- name: Fail if Element Call architecture is not supported
ansible.builtin.fail:
msg: >
Element Call is only supported on amd64 and arm64 architectures.
Your architecture is configured as '{{ matrix_element_call_architecture }}'.
when: "matrix_element_call_architecture not in ['amd64', 'arm64']"
- name: Fail if required Element Call settings are not defined
ansible.builtin.fail:
msg: >