mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2024-12-26 19:08:31 +01:00
Group matrix-registration-bot's self-building tasks in a block
This commit is contained in:
parent
47a337258c
commit
358b3486f9
@ -33,28 +33,28 @@
|
|||||||
delay: "{{ devture_playbook_help_container_retries_delay }}"
|
delay: "{{ devture_playbook_help_container_retries_delay }}"
|
||||||
until: result is not failed
|
until: result is not failed
|
||||||
|
|
||||||
- name: Ensure matrix-registration-bot repository is present on self-build
|
- when: matrix_bot_matrix_registration_bot_container_image_self_build | bool
|
||||||
ansible.builtin.git:
|
block:
|
||||||
repo: "{{ matrix_bot_matrix_registration_bot_docker_repo }}"
|
- name: Ensure matrix-registration-bot repository is present on self-build
|
||||||
version: "{{ matrix_bot_matrix_registration_bot_docker_repo_version }}"
|
ansible.builtin.git:
|
||||||
dest: "{{ matrix_bot_matrix_registration_bot_docker_src_files_path }}"
|
repo: "{{ matrix_bot_matrix_registration_bot_docker_repo }}"
|
||||||
force: "yes"
|
version: "{{ matrix_bot_matrix_registration_bot_docker_repo_version }}"
|
||||||
become: true
|
dest: "{{ matrix_bot_matrix_registration_bot_docker_src_files_path }}"
|
||||||
become_user: "{{ matrix_user_username }}"
|
force: "yes"
|
||||||
register: matrix_bot_matrix_registration_bot_git_pull_results
|
become: true
|
||||||
when: "matrix_bot_matrix_registration_bot_container_image_self_build | bool"
|
become_user: "{{ matrix_user_username }}"
|
||||||
|
register: matrix_bot_matrix_registration_bot_git_pull_results
|
||||||
|
|
||||||
- name: Ensure matrix-registration-bot image is built
|
- name: Ensure matrix-registration-bot image is built
|
||||||
community.docker.docker_image:
|
community.docker.docker_image:
|
||||||
name: "{{ matrix_bot_matrix_registration_bot_docker_image }}"
|
name: "{{ matrix_bot_matrix_registration_bot_docker_image }}"
|
||||||
source: build
|
source: build
|
||||||
force_source: "{{ matrix_bot_matrix_registration_bot_git_pull_results.changed if ansible_version.major > 2 or ansible_version.minor >= 8 else omit }}"
|
force_source: "{{ matrix_bot_matrix_registration_bot_git_pull_results.changed if ansible_version.major > 2 or ansible_version.minor >= 8 else omit }}"
|
||||||
force: "{{ omit if ansible_version.major > 2 or ansible_version.minor >= 8 else matrix_bot_matrix_registration_bot_git_pull_results.changed }}"
|
force: "{{ omit if ansible_version.major > 2 or ansible_version.minor >= 8 else matrix_bot_matrix_registration_bot_git_pull_results.changed }}"
|
||||||
build:
|
build:
|
||||||
dockerfile: Dockerfile
|
dockerfile: Dockerfile
|
||||||
path: "{{ matrix_bot_matrix_registration_bot_docker_src_files_path }}"
|
path: "{{ matrix_bot_matrix_registration_bot_docker_src_files_path }}"
|
||||||
pull: true
|
pull: true
|
||||||
when: "matrix_bot_matrix_registration_bot_container_image_self_build | bool"
|
|
||||||
|
|
||||||
- name: Ensure matrix-registration-bot container network is created
|
- name: Ensure matrix-registration-bot container network is created
|
||||||
community.general.docker_network:
|
community.general.docker_network:
|
||||||
|
Loading…
Reference in New Issue
Block a user