mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-06 10:40:36 -07:00
* Sync GHA workflow w/ the collection template (#452) * Sync GHA workflow w/ the collection template * Drop the trailing pre-cmd semicolon * Recover missing `-e` flag of `sed` * Use relative paths for version configs * Unquote `env.connector_version_file` * Use string formatting to fix the substitution problem (cherry picked from commit8107530744
) * Backport mysql_version_parts variable assignation (cherry picked from commit79046a88cb
) * Add changelog fragment * Backport flags and variables to differentiate MariaDB from MySQL setup * Backport issue-28 check for tls support * Backport tls_requirements simplified and deduplified tests Co-authored-by: Sviatoslav Sydorenko <wk.cvs.github@sydorenko.org.ua>
23 lines
905 B
YAML
23 lines
905 B
YAML
####################################################################
|
|
# WARNING: These are designed specifically for Ansible tests #
|
|
# and should not be used as examples of how to write Ansible roles #
|
|
####################################################################
|
|
|
|
# Copyright: (c) 2019, Andrew Klychkov (@Andersson007) <aaklychkov@mail.ru>
|
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
# Initial CI tests of mysql_replication module:
|
|
- import_tasks: mysql_replication_initial.yml
|
|
|
|
# Tests of primary_delay parameter:
|
|
- import_tasks: mysql_replication_primary_delay.yml
|
|
|
|
# Tests of channel parameter:
|
|
- import_tasks: mysql_replication_channel.yml
|
|
when:
|
|
- install_type == 'mysql' # FIXME: mariadb introduces FOR CHANNEL in 10.7
|
|
|
|
# Tests of resetprimary mode:
|
|
- import_tasks: mysql_replication_resetprimary_mode.yml
|
|
|
|
- include: issue-28.yml
|