357fe38766
Notably - Python 2.7 and 3.6 are no longer supported by Ansible on targets - The yum module has been removed, and redirected to dnf - _INTERPRETER_PYTHON_DISTRO_MAP has been neutered. Interpreter discovery always favours specific `python3.<x>` interpreters in decending version order, then generic `python3` or `python`. - Add the ability for an action plugin to call self._execute_module(*, ignore_unknown_opts=True) to execute a module with options that may not be supported for the version being called. https://docs.ansible.com/ansible/devel/porting_guides/porting_guide_10.html https://github.com/ansible-community/ansible-build-data/blob/main/10/CHANGELOG-v10.md https://github.com/ansible/ansible/blob/stable-2.17/changelogs/CHANGELOG-v2.17.rst fixes #1074, refs #1082 Co-authored-by: Claude Becker <becker@phys.ethz.ch> |
3 months ago | |
---|---|---|
.. | ||
soak | 6 years ago | |
README.md | 3 years ago | |
ansible_install.py | 3 months ago | |
ansible_tests.py | 7 months ago | |
azure-pipelines-steps.yml | 8 months ago | |
azure-pipelines.yml | 3 months ago | |
ci_lib.py | 1 year ago | |
debops_common_install.py | 3 months ago | |
debops_common_tests.py | 3 years ago | |
localhost_ansible_install.py | 3 years ago | |
localhost_ansible_tests.py | 7 months ago | |
mitogen_install.py | 3 months ago | |
mitogen_py24_install.py | 3 months ago | |
mitogen_py24_tests.py | 6 years ago | |
mitogen_tests.py | 5 years ago |
README.md
.ci
This directory contains scripts for Continuous Integration platforms. Currently Azure Pipelines, but they will also happily run on any Debian-like machine.
The scripts are usually split into _install
and _test
steps. The _install
step will damage your machine, the _test
step will just run the tests the way
CI runs them.
There is a common library, ci_lib.py
, which just centralized a bunch of
random macros and also environment parsing.
Some of the scripts allow you to pass extra flags through to the component
under test, e.g. ../../.ci/ansible_tests.py -vvv
will run with verbose.
Hack these scripts until your heart is content. There is no pride to be found here, just necessity.
ci_lib.run_batches()
There are some weird looking functions to extract more paralellism from the
build. The above function takes lists of strings, arranging for the strings in
each list to run in order, but for the lists to run in parallel. That's great
for doing setup.py install
while pulling a Docker container, for example.
Environment Variables
TARGET_COUNT
: number of targets fordebops_
run. Defaults to 2.DISTRO
: themitogen_
tests need a target Docker container distro. This name comes from the Docker Hubmitogen
user, i.e.mitogen/$DISTRO-test
DISTROS
: theansible_
tests can run against multiple targets simultaneously, which speeds things up. This is a space-separated list of DISTRO names, but additionally, supports:debian-py3
: when generating Ansible inventory file, setansible_python_interpreter
topython3
, i.e. run a test where the target interpreter is Python 3.debian*16
: generate 16 Docker containers running Debian. Also works with -py3.