Matrix Docker Ansible eploy
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

7 строки
345 B

  1. ---
  2. - name: Fail if on an unsupported architecture
  3. ansible.builtin.fail:
  4. msg: "Jitsi only supports the amd64 architecture right now. See https://github.com/jitsi/docker-jitsi-meet/issues/1069 and https://github.com/jitsi/docker-jitsi-meet/issues/1214"
  5. when: matrix_jitsi_enabled | bool and matrix_architecture not in ['amd64', 'arm64']