mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-05 10:10:32 -07:00
* Enable and fix integration tests for devel * Update repo targets * Remove useless directive * default container -> ubuntu1804 * revert last commit * 10.2 does not support 20.04 focal; increase to 10.3
28 lines
1.1 KiB
YAML
28 lines
1.1 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
|
|
- 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_tarball: "mariadb-{{ mariadb_version }}-linux-x86_64.tar.gz"
|
|
mariadb_src: "https://downloads.mariadb.com/MariaDB/mariadb-{{ mariadb_version }}/bintar-linux-x86_64/{{ mariadb_tarball }}"
|