Merge branch 'main' into lie_test_require_ssl

This commit is contained in:
Laurent Indermuehle 2024-04-11 19:26:18 +02:00
commit 902392e861
No known key found for this signature in database
GPG key ID: 93FA944C9F34DD09
21 changed files with 59 additions and 63 deletions

View file

@ -1,6 +1,6 @@
---
name: Plugins CI
on:
on: # yamllint disable-line rule:truthy
push:
paths:
- 'plugins/**'
@ -18,15 +18,16 @@ on:
jobs:
sanity:
name: "Sanity (Ansible: ${{ matrix.ansible }})"
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
strategy:
matrix:
ansible:
- stable-2.14
- stable-2.15
- stable-2.16
- stable-2.17
- devel
steps:
# https://github.com/ansible-community/ansible-test-gh-action
- name: Perform sanity testing
uses: ansible-community/ansible-test-gh-action@release/v1
with:
@ -36,14 +37,14 @@ jobs:
integration:
name: "Integration (Python: ${{ matrix.python }}, Ansible: ${{ matrix.ansible }}, DB: ${{ matrix.db_engine_name }} ${{ matrix.db_engine_version }}, connector: ${{ matrix.connector_name }} ${{ matrix.connector_version }})"
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
ansible:
- stable-2.14
- stable-2.15
- stable-2.16
- stable-2.17
- devel
db_engine_name:
- mysql
@ -111,9 +112,6 @@ jobs:
- db_engine_version: 5.7.40
python: '3.10'
- db_engine_version: 5.7.40
ansible: stable-2.14
- db_engine_version: 5.7.40
ansible: stable-2.15
@ -126,9 +124,6 @@ jobs:
- db_engine_version: 8.0.31
python: '3.8'
- db_engine_version: 8.0.31
python: '3.8'
- db_engine_version: 10.4.27
python: '3.10'
@ -174,23 +169,20 @@ jobs:
- python: '3.10'
connector_version: 2.0.3
- python: '3.8'
ansible: stable-2.14
- python: '3.8'
ansible: stable-2.15
- python: '3.8'
ansible: stable-2.16
- python: '3.8'
ansible: stable-2.17
- python: '3.8'
ansible: devel
- python: '3.9'
ansible: stable-2.15
ansible: stable-2.16
- python: '3.9'
ansible: stable-2.16
ansible: stable-2.17
- python: '3.9'
ansible: devel
@ -284,16 +276,12 @@ jobs:
fi
- name: Set docker_image
run: >
docker_image_multiline=("
ghcr.io/ansible-collections/community.mysql\
run: |-
echo "docker_image=ghcr.io/ansible-collections/community.mysql\
/test-container-${{ env.db_client }}\
-py${{ env.python_version_flat }}\
-${{ matrix.connector_name }}${{ env.connector_version_flat }}\
:latest")
echo "docker_image=$(printf '%s' $docker_image_multiline)"
>> $GITHUB_ENV
:latest" >> $GITHUB_ENV
- name: >-
Perform integration testing against
@ -332,7 +320,7 @@ jobs:
testing-type: integration
units:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
name: Units (Ⓐ${{ matrix.ansible }})
strategy:
# As soon as the first unit test fails,
@ -340,20 +328,20 @@ jobs:
fail-fast: true
matrix:
ansible:
- stable-2.14
- stable-2.15
- stable-2.16
- stable-2.17
- devel
python:
- 3.8
- 3.9
exclude:
- python: '3.8'
ansible: stable-2.14
- python: '3.8'
ansible: stable-2.15
- python: '3.8'
ansible: stable-2.16
- python: '3.8'
ansible: stable-2.17
- python: '3.8'
ansible: devel

View file

@ -1,6 +1,6 @@
---
name: Roles CI
on:
on: # yamllint disable-line rule:truthy
push:
paths:
- 'roles/**'
@ -15,7 +15,7 @@ on:
jobs:
molecule:
name: "Molecule (Python: ${{ matrix.python }}, Ansible: ${{ matrix.ansible }}, MySQL: ${{ matrix.mysql }})"
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
env:
PY_COLORS: 1
ANSIBLE_FORCE_COLOR: 1
@ -24,26 +24,36 @@ jobs:
mysql:
- 2.0.12
ansible:
- stable-2.13
- stable-2.14
- stable-2.15
- stable-2.16
- stable-2.17
- devel
python:
- 3.8
- 3.9
- '3.8'
- '3.9'
- '3.10'
exclude:
- python: 3.8
ansible: stable-2.17
- python: 3.9
ansible: stable-2.17
- python: 3.8
ansible: devel
- python: 3.9
ansible: devel
steps:
- name: Check out code
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
path: ansible_collections/community/mysql
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}

View file

@ -1,7 +1,7 @@
---
name: Build Docker Image for ansible-test
on:
on: # yamllint disable-line rule:truthy
workflow_call:
inputs:
registry:

View file

@ -1,7 +1,7 @@
---
name: Docker Image CI mariadb-py310-mysqlclient211
on:
on: # yamllint disable-line rule:truthy
push:
paths:
- 'test-containers/mariadb-py310-mysqlclient211/**'

View file

@ -1,7 +1,7 @@
---
name: Docker Image CI mariadb-py310-pymysql102
on:
on: # yamllint disable-line rule:truthy
push:
paths:
- 'test-containers/mariadb-py310-pymysql102/**'

View file

@ -1,7 +1,7 @@
---
name: Docker Image CI mariadb-py38-mysqlclient201
on:
on: # yamllint disable-line rule:truthy
push:
paths:
- 'test-containers/mariadb-py38-mysqlclient201/**'

View file

@ -1,7 +1,7 @@
---
name: Docker Image CI mariadb-py38-pymysql093
on:
on: # yamllint disable-line rule:truthy
push:
paths:
- 'test-containers/mariadb-py38-pymysql093/**'

View file

@ -1,7 +1,7 @@
---
name: Docker Image CI mariadb-py39-mysqlclient203
on:
on: # yamllint disable-line rule:truthy
push:
paths:
- 'test-containers/mariadb-py39-mysqlclient203/**'

View file

@ -1,7 +1,7 @@
---
name: Docker Image CI mariadb-py39-pymysql093
on:
on: # yamllint disable-line rule:truthy
push:
paths:
- 'test-containers/mariadb-py39-pymysql093/**'

View file

@ -1,7 +1,7 @@
---
name: Docker Image CI my57-py38-mysqlclient201
on:
on: # yamllint disable-line rule:truthy
push:
paths:
- 'test-containers/my57-py38-mysqlclient201/**'

View file

@ -1,7 +1,7 @@
---
name: Docker Image CI my57-py38-pymysql0711
on:
on: # yamllint disable-line rule:truthy
push:
paths:
- 'test-containers/my57-py38-pymysql0711/**'

View file

@ -1,7 +1,7 @@
---
name: Docker Image CI my57-py38-pymysql093
on:
on: # yamllint disable-line rule:truthy
push:
paths:
- 'test-containers/my57-py38-pymysql093/**'

View file

@ -1,7 +1,7 @@
---
name: Docker Image CI mysql-py310-mysqlclient211
on:
on: # yamllint disable-line rule:truthy
push:
paths:
- 'test-containers/mysql-py310-mysqlclient211/**'

View file

@ -1,7 +1,7 @@
---
name: Docker Image CI mysql-py310-pymysql102
on:
on: # yamllint disable-line rule:truthy
push:
paths:
- 'test-containers/mysql-py310-pymysql102/**'

View file

@ -1,7 +1,7 @@
---
name: Docker Image CI mysql-py38-mysqlclient201
on:
on: # yamllint disable-line rule:truthy
push:
paths:
- 'test-containers/mysql-py38-mysqlclient201/**'

View file

@ -1,7 +1,7 @@
---
name: Docker Image CI mysql-py38-pymysql093
on:
on: # yamllint disable-line rule:truthy
push:
paths:
- 'test-containers/mysql-py38-pymysql093/**'

View file

@ -1,7 +1,7 @@
---
name: Docker Image CI mysql-py39-mysqlclient203
on:
on: # yamllint disable-line rule:truthy
push:
paths:
- 'test-containers/mysql-py39-mysqlclient203/**'

View file

@ -1,7 +1,7 @@
---
name: Docker Image CI mysql-py39-pymysql093
on:
on: # yamllint disable-line rule:truthy
push:
paths:
- 'test-containers/mysql-py39-pymysql093/*'

View file

@ -99,9 +99,9 @@ Here is the table for the support timeline:
### ansible-core
- stable-2.14
- stable-2.15
- stable-2.16
- stable-2.17
- current development version
### Databases

View file

@ -49,11 +49,9 @@ The Makefile accept the following options
- `ansible`
- Mandatory: true
- Choices:
- "stable-2.12"
- "stable-2.13"
- "stable-2.14"
- "stable-2.15"
- "stable-2.16"
- "stable-2.17"
- "devel"
- Description: Version of ansible to install in a venv to run ansible-test

View file

@ -76,14 +76,14 @@
that:
- "'SSL' in reqs"
vars:
- reqs: "{{((old_result.results[0] is skipped | ternary(new_result, old_result)).results | selectattr('item', 'contains', user_name_1) | first).stdout.split('REQUIRE')[1].split(separator)[0].strip()}}"
reqs: "{{ ((old_result.results[0] is skipped | ternary(new_result, old_result)).results | selectattr('item', 'contains', user_name_1) | first).stdout.split('REQUIRE')[1].split(separator)[0].strip() }}"
- name: Tls reqs | Assert user2 TLS requirements
assert:
that:
- "'X509' in reqs"
vars:
- reqs: "{{((old_result.results[0] is skipped | ternary(new_result, old_result)).results | selectattr('item', 'contains', user_name_2) | first).stdout.split('REQUIRE')[1].split(separator)[0].strip()}}"
reqs: "{{ ((old_result.results[0] is skipped | ternary(new_result, old_result)).results | selectattr('item', 'contains', user_name_2) | first).stdout.split('REQUIRE')[1].split(separator)[0].strip() }}"
- name: Tls reqs | Assert user3 TLS requirements
assert:
@ -92,7 +92,7 @@
- "'/CN=org/O=MyDom, Inc./C=US/ST=Oregon/L=Portland' in (reqs | select('contains', 'ISSUER') | first)"
- "'ECDHE-ECDSA-AES256-SHA384' in (reqs | select('contains', 'CIPHER') | first)"
vars:
- reqs: "{{((old_result.results[0] is skipped | ternary(new_result, old_result)).results | selectattr('item', 'contains', user_name_3) | first).stdout.split('REQUIRE')[1].split(separator)[0].replace(\"' \", \"':\").split(\":\")}}"
reqs: "{{ ((old_result.results[0] is skipped | ternary(new_result, old_result)).results | selectattr('item', 'contains', user_name_3) | first).stdout.split('REQUIRE')[1].split(separator)[0].replace(\"' \", \"':\").split(\":\") }}"
# CentOS 6 uses an older version of jinja that does not provide the selectattr filter.
when: ansible_distribution != 'CentOS' or ansible_distribution_major_version != '6'
@ -129,7 +129,7 @@
assert:
that: "'SSL' in reqs"
vars:
- reqs: "{{(old_result is skipped | ternary(new_result, old_result)).stdout.split('REQUIRE')[1].split(separator)[0].strip()}}"
reqs: "{{ (old_result is skipped | ternary(new_result, old_result)).stdout.split('REQUIRE')[1].split(separator)[0].strip() }}"
- name: Tls reqs | Modify user with TLS requirements state=present (expect changed=true)
mysql_user:
@ -157,7 +157,7 @@
assert:
that: "'X509' in reqs"
vars:
- reqs: "{{(old_result is skipped | ternary(new_result, old_result)).stdout.split('REQUIRE')[1].split(separator)[0].strip()}}"
reqs: "{{ (old_result is skipped | ternary(new_result, old_result)).stdout.split('REQUIRE')[1].split(separator)[0].strip() }}"
- name: Tls reqs | Remove TLS requirements from user (expect changed=true)
mysql_user: