mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-04 01:30:32 -07:00
* Fix explanation about containers images * Add definitive URI to the containers images * Document that new images must be set as public * Add makefile options possible values * Document that any mysql and mariadb tag can be use * Add computation of docker_image path * Refactor pre-command to separate commands for cleaner GHA output * Refactor to use GHA test matrix * Cut docker_image from documentation since it's now automatic * Document how to use run_all_test.py to display the test matrix * Temp: Add path to images in my fork to validate integrations tests
79 lines
2.5 KiB
YAML
79 lines
2.5 KiB
YAML
---
|
|
|
|
- name: "{{ role_name }} | Setvars | Extract Podman/Docker Network Gateway"
|
|
ansible.builtin.shell:
|
|
cmd: ip route|grep default|awk '{print $3}'
|
|
register: ip_route_output
|
|
|
|
- name: "{{ role_name }} | Setvars | Set Fact"
|
|
ansible.builtin.set_fact:
|
|
gateway_addr: "{{ ip_route_output.stdout }}"
|
|
connector_name_lookup: >-
|
|
{{ lookup(
|
|
'file',
|
|
'/root/ansible_collections/community/mysql/tests/integration/connector_name'
|
|
) }}
|
|
connector_version_lookup: >-
|
|
{{ lookup(
|
|
'file',
|
|
'/root/ansible_collections/community/mysql/tests/integration/connector_version'
|
|
) }}
|
|
db_engine_name_lookup: >-
|
|
{{ lookup(
|
|
'file',
|
|
'/root/ansible_collections/community/mysql/tests/integration/db_engine_name'
|
|
) }}
|
|
db_engine_version_lookup: >-
|
|
{{ lookup(
|
|
'file',
|
|
'/root/ansible_collections/community/mysql/tests/integration/db_engine_version'
|
|
) }}
|
|
python_version_lookup: >-
|
|
{{ lookup(
|
|
'file',
|
|
'/root/ansible_collections/community/mysql/tests/integration/python'
|
|
) }}
|
|
ansible_version_lookup: >-
|
|
{{ lookup(
|
|
'file',
|
|
'/root/ansible_collections/community/mysql/tests/integration/ansible'
|
|
) }}
|
|
|
|
- name: "{{ role_name }} | Setvars | Set Fact using above facts"
|
|
ansible.builtin.set_fact:
|
|
connector_name: "{{ connector_name_lookup.strip() }}"
|
|
connector_version: "{{ connector_version_lookup.strip() }}"
|
|
db_engine: "{{ db_engine_name_lookup.strip() }}"
|
|
db_version: "{{ db_engine_version_lookup.strip() }}"
|
|
python_version: "{{ python_version_lookup.strip() }}"
|
|
test_ansible_version: >-
|
|
{%- if ansible_version_lookup == 'devel' -%}
|
|
{{ ansible_version_lookup }}
|
|
{%- else -%}
|
|
{{ ansible_version_lookup.split('-')[1].strip() }}
|
|
{%- endif -%}
|
|
mysql_command: >-
|
|
mysql
|
|
-h{{ gateway_addr }}
|
|
-P{{ mysql_primary_port }}
|
|
-u{{ mysql_user }}
|
|
-p{{ mysql_password }}
|
|
--protocol=tcp
|
|
mysql_command_wo_port: >-
|
|
mysql
|
|
-h{{ gateway_addr }}
|
|
-u{{ mysql_user }}
|
|
-p{{ mysql_password }}
|
|
--protocol=tcp
|
|
|
|
- name: "{{ role_name }} | Setvars | Output test informations"
|
|
vars:
|
|
msg: |-
|
|
connector_name: {{ connector_name }}
|
|
connector_version: {{ connector_version }}
|
|
db_engine: {{ db_engine }}
|
|
db_version: {{ db_version }}
|
|
python_version: {{ python_version }}
|
|
test_ansible_version: {{ test_ansible_version }}
|
|
ansible.builtin.debug:
|
|
msg: "{{ msg.split('\n') }}"
|