mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-06 02:30:32 -07:00
* Add changelog fragment * Add check_hostname option * Propagate check_hostname option across the collection * Update documentation fragment * Propagate test to all other plugins * Remove stray line * Give test user privileges to run test operations * Extend integration tests job matrix * Add caution note to documentation fragment. * Update matrix job name * Rearrange job matrix * Fix sanity issues * Fix issue with mysqldb silently failing to update out of range variables * Fix variable overwrite * Ignore `check_hostname` when using MySQLdb * Update plugins/doc_fragments/mysql.py Co-authored-by: Andrew Klychkov <aaklychkov@mail.ru> * Update plugins/doc_fragments/mysql.py Co-authored-by: Andrew Klychkov <aaklychkov@mail.ru> * Update changelogs/fragments/35-disable-hostname-check.yml Co-authored-by: Andrew Klychkov <aaklychkov@mail.ru> Co-authored-by: Andrew Klychkov <aaklychkov@mail.ru>
103 lines
3.2 KiB
YAML
103 lines
3.2 KiB
YAML
name: Plugins CI
|
|
on:
|
|
push:
|
|
paths:
|
|
- 'plugins/**'
|
|
- 'tests/**'
|
|
- '.github/workflows/ansible-test-plugins.yml'
|
|
pull_request:
|
|
paths:
|
|
- 'plugins/**'
|
|
- 'tests/**'
|
|
- '.github/workflows/ansible-test-plugins.yml'
|
|
schedule:
|
|
- cron: '0 6 * * *'
|
|
|
|
|
|
env:
|
|
mysql_version_file: "./ansible_collections/community/mysql/tests/integration/targets/setup_mysql/defaults/main.yml"
|
|
connector_version_file: "./ansible_collections/community/mysql/tests/integration/targets/setup_mysql/vars/main.yml"
|
|
|
|
jobs:
|
|
sanity:
|
|
name: "Sanity (Python: ${{ matrix.python }}, Ansible: ${{ matrix.ansible }})"
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
ansible:
|
|
- stable-2.9
|
|
- stable-2.10
|
|
- devel
|
|
steps:
|
|
|
|
- name: Check out code
|
|
uses: actions/checkout@v2
|
|
with:
|
|
path: ansible_collections/community/mysql
|
|
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: 3.8
|
|
|
|
- name: Install ansible-base (${{ matrix.ansible }})
|
|
run: pip install https://github.com/ansible/ansible/archive/${{ matrix.ansible }}.tar.gz --disable-pip-version-check
|
|
|
|
- name: Run sanity tests
|
|
run: ansible-test sanity --docker -v --color
|
|
working-directory: ./ansible_collections/community/mysql
|
|
|
|
integration:
|
|
name: "Integration (Python: ${{ matrix.python }}, Ansible: ${{ matrix.ansible }}, MySQL: ${{ matrix.mysql }}, Connector: ${{ matrix.connector }})"
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
mysql:
|
|
- 5.7.31
|
|
- 8.0.21
|
|
ansible:
|
|
- stable-2.9
|
|
- stable-2.10
|
|
- devel
|
|
python:
|
|
- 3.6
|
|
connector:
|
|
- pymysql==0.7.10
|
|
- pymysql==0.9.3
|
|
- mysqlclient==2.0.1
|
|
exclude:
|
|
- mysql: 8.0.21
|
|
connector: pymysql==0.7.10
|
|
steps:
|
|
|
|
- name: Check out code
|
|
uses: actions/checkout@v2
|
|
with:
|
|
path: ansible_collections/community/mysql
|
|
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: 3.8
|
|
|
|
- name: Install ansible-base (${{ matrix.ansible }})
|
|
run: pip install https://github.com/ansible/ansible/archive/${{ matrix.ansible }}.tar.gz --disable-pip-version-check
|
|
|
|
- name: Set MySQL version (${{ matrix.mysql }})
|
|
run: "sed -i 's/^mysql_version:.*/mysql_version: \"${{ matrix.mysql }}\"/g' ${{ env.mysql_version_file }}"
|
|
|
|
- name: Set Connector version (${{ matrix.connector }})
|
|
run: "sed -i 's/^python_packages:.*/python_packages: [${{ matrix.connector }}]/' ${{ env.connector_version_file }}"
|
|
|
|
- name: Run integration tests
|
|
run: ansible-test integration --docker -v --color --retry-on-error --continue-on-error --python ${{ matrix.python }} --diff --coverage
|
|
working-directory: ./ansible_collections/community/mysql
|
|
|
|
- name: Generate coverage report.
|
|
run: ansible-test coverage xml -v --requirements --group-by command --group-by version
|
|
working-directory: ./ansible_collections/community/mysql
|
|
|
|
- uses: codecov/codecov-action@v1
|
|
with:
|
|
fail_ci_if_error: false
|