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>
30 lines
1.2 KiB
YAML
30 lines
1.2 KiB
YAML
---
|
|
dbdeployer_install_dir: "{{ dbdeployer_home_dir }}/dbdeployer_{{ dbdeployer_version }}"
|
|
dbdeployer_src: "https://github.com/datacharmer/dbdeployer/releases/download/v{{ dbdeployer_version }}/dbdeployer-{{ dbdeployer_version }}.linux.tar.gz"
|
|
dbdeployer_installed_file: "{{ dbdeployer_home_dir }}/dbdeployer_installed"
|
|
|
|
dbdeployer_sandbox_download_dir: "{{ home_dir }}/downloads"
|
|
dbdeployer_sandbox_binary_dir: "{{ home_dir }}/opt/mysql"
|
|
dbdeployer_sandbox_home_dir: "{{ home_dir }}/sandboxes"
|
|
|
|
percona_mysql_packages:
|
|
- "{{ percona_client_package }}"
|
|
|
|
python_packages: [pymysql == 0.9.3]
|
|
|
|
install_prereqs:
|
|
- libaio1
|
|
- libnuma1
|
|
- libncurses5
|
|
|
|
install_python_prereqs:
|
|
- python3-dev
|
|
- python3-cryptography
|
|
- default-libmysqlclient-dev
|
|
- build-essential
|
|
|
|
mysql_tarball: "mysql-{{ mysql_version }}-linux-glibc2.12-x86_64.tar.{{ mysql_compression_extension }}"
|
|
mysql_src: "https://dev.mysql.com/get/Downloads/MySQL-{{ mysql_major_version }}/{{ mysql_tarball }}"
|
|
mariadb_url_subdir: "linux"
|
|
mariadb_tarball: "mariadb-{{ mariadb_version }}-{{ mariadb_url_subdir }}-x86_64.tar.gz"
|
|
mariadb_src: "https://downloads.mariadb.com/MariaDB/mariadb-{{ mariadb_version }}/bintar-{{ mariadb_url_subdir }}-x86_64/{{ mariadb_tarball }}"
|