mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2025-07-11 18:35:11 +02:00
Make Element Call fail during validation if on an unsupported architecture (like arm32)
This commit is contained in:
@ -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: >
|
||||
|
Reference in New Issue
Block a user