2018-11-05 20:49:58 +00:00
|
|
|
# Python package
|
|
|
|
# Create and test a Python package on multiple Python versions.
|
|
|
|
# Add steps that analyze code, save the dist with the build record, publish to a PyPI-compatible index, and more:
|
|
|
|
# https://docs.microsoft.com/azure/devops/pipelines/languages/python
|
|
|
|
|
2021-11-09 19:22:37 +00:00
|
|
|
# User defined variables are also injected as environment variables
|
|
|
|
# https://docs.microsoft.com/en-us/azure/devops/pipelines/process/variables#environment-variables
|
|
|
|
#variables:
|
|
|
|
#ANSIBLE_VERBOSITY: 3
|
|
|
|
|
2024-04-04 14:46:29 +00:00
|
|
|
trigger:
|
|
|
|
branches:
|
|
|
|
include:
|
|
|
|
- "*"
|
|
|
|
exclude:
|
|
|
|
- docs-master
|
|
|
|
|
2018-11-05 20:49:58 +00:00
|
|
|
jobs:
|
2022-08-25 20:00:09 +00:00
|
|
|
- job: mac11
|
2020-11-01 04:35:13 +00:00
|
|
|
# vanilla Ansible is really slow
|
|
|
|
timeoutInMinutes: 120
|
2019-02-14 11:17:52 +00:00
|
|
|
steps:
|
|
|
|
- template: azure-pipelines-steps.yml
|
2018-11-05 20:49:58 +00:00
|
|
|
pool:
|
2022-08-25 20:00:09 +00:00
|
|
|
# https://github.com/actions/runner-images/blob/main/images/macos/macos-11-Readme.md
|
2021-12-15 12:07:00 +00:00
|
|
|
vmImage: macOS-11
|
2021-12-01 21:01:07 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
Mito_27:
|
|
|
|
tox.env: py27-mode_mitogen
|
2024-03-06 11:51:12 +00:00
|
|
|
Mito_312:
|
|
|
|
python.version: '3.12'
|
|
|
|
tox.env: py312-mode_mitogen
|
2021-12-01 21:01:07 +00:00
|
|
|
|
|
|
|
Loc_27_210:
|
|
|
|
tox.env: py27-mode_localhost-ansible2.10
|
2024-04-05 18:23:29 +00:00
|
|
|
Loc_312_9:
|
2024-03-06 11:51:12 +00:00
|
|
|
python.version: '3.12'
|
2024-04-05 18:23:29 +00:00
|
|
|
tox.env: py312-mode_localhost-ansible9
|
2021-12-01 21:01:07 +00:00
|
|
|
|
|
|
|
Van_27_210:
|
2024-03-17 14:55:15 +00:00
|
|
|
tox.env: py27-mode_localhost-ansible2.10-strategy_linear
|
2024-04-05 18:23:29 +00:00
|
|
|
Van_312_9:
|
2024-03-06 11:51:12 +00:00
|
|
|
python.version: '3.12'
|
2024-04-05 18:23:29 +00:00
|
|
|
tox.env: py312-mode_localhost-ansible9-strategy_linear
|
2019-02-14 11:17:52 +00:00
|
|
|
|
|
|
|
- job: Linux
|
|
|
|
pool:
|
2022-08-25 20:00:09 +00:00
|
|
|
# https://github.com/actions/runner-images/blob/main/images/linux/Ubuntu2004-Readme.md
|
|
|
|
vmImage: ubuntu-20.04
|
2019-02-14 11:17:52 +00:00
|
|
|
steps:
|
|
|
|
- template: azure-pipelines-steps.yml
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-11-17 22:09:31 +00:00
|
|
|
Mito_27_centos6:
|
|
|
|
tox.env: py27-mode_mitogen-distro_centos6
|
|
|
|
Mito_27_centos7:
|
|
|
|
tox.env: py27-mode_mitogen-distro_centos7
|
|
|
|
Mito_27_centos8:
|
|
|
|
tox.env: py27-mode_mitogen-distro_centos8
|
|
|
|
Mito_27_debian9:
|
|
|
|
tox.env: py27-mode_mitogen-distro_debian9
|
|
|
|
Mito_27_debian10:
|
|
|
|
tox.env: py27-mode_mitogen-distro_debian10
|
|
|
|
Mito_27_debian11:
|
|
|
|
tox.env: py27-mode_mitogen-distro_debian11
|
|
|
|
Mito_27_ubuntu1604:
|
|
|
|
tox.env: py27-mode_mitogen-distro_ubuntu1604
|
|
|
|
Mito_27_ubuntu1804:
|
|
|
|
tox.env: py27-mode_mitogen-distro_ubuntu1804
|
|
|
|
Mito_27_ubuntu2004:
|
|
|
|
tox.env: py27-mode_mitogen-distro_ubuntu2004
|
2018-11-05 21:09:54 +00:00
|
|
|
|
2021-11-17 22:09:31 +00:00
|
|
|
Mito_36_centos6:
|
|
|
|
python.version: '3.6'
|
|
|
|
tox.env: py36-mode_mitogen-distro_centos6
|
|
|
|
Mito_36_centos7:
|
|
|
|
python.version: '3.6'
|
|
|
|
tox.env: py36-mode_mitogen-distro_centos7
|
|
|
|
Mito_36_centos8:
|
|
|
|
python.version: '3.6'
|
|
|
|
tox.env: py36-mode_mitogen-distro_centos8
|
|
|
|
Mito_36_debian9:
|
2018-11-05 20:49:58 +00:00
|
|
|
python.version: '3.6'
|
2021-11-17 22:09:31 +00:00
|
|
|
tox.env: py36-mode_mitogen-distro_debian9
|
|
|
|
Mito_36_debian10:
|
|
|
|
python.version: '3.6'
|
|
|
|
tox.env: py36-mode_mitogen-distro_debian10
|
|
|
|
Mito_36_debian11:
|
|
|
|
python.version: '3.6'
|
|
|
|
tox.env: py36-mode_mitogen-distro_debian11
|
|
|
|
Mito_36_ubuntu1604:
|
|
|
|
python.version: '3.6'
|
|
|
|
tox.env: py36-mode_mitogen-distro_ubuntu1604
|
|
|
|
Mito_36_ubuntu1804:
|
|
|
|
python.version: '3.6'
|
|
|
|
tox.env: py36-mode_mitogen-distro_ubuntu1804
|
|
|
|
Mito_36_ubuntu2004:
|
|
|
|
python.version: '3.6'
|
|
|
|
tox.env: py36-mode_mitogen-distro_ubuntu2004
|
2020-05-26 00:22:43 +00:00
|
|
|
|
2024-03-06 11:51:12 +00:00
|
|
|
Mito_312_centos6:
|
|
|
|
python.version: '3.12'
|
|
|
|
tox.env: py312-mode_mitogen-distro_centos6
|
|
|
|
Mito_312_centos7:
|
|
|
|
python.version: '3.12'
|
|
|
|
tox.env: py312-mode_mitogen-distro_centos7
|
|
|
|
Mito_312_centos8:
|
|
|
|
python.version: '3.12'
|
|
|
|
tox.env: py312-mode_mitogen-distro_centos8
|
|
|
|
Mito_312_debian9:
|
|
|
|
python.version: '3.12'
|
|
|
|
tox.env: py312-mode_mitogen-distro_debian9
|
|
|
|
Mito_312_debian10:
|
|
|
|
python.version: '3.12'
|
|
|
|
tox.env: py312-mode_mitogen-distro_debian10
|
|
|
|
Mito_312_debian11:
|
|
|
|
python.version: '3.12'
|
|
|
|
tox.env: py312-mode_mitogen-distro_debian11
|
|
|
|
Mito_312_ubuntu1604:
|
|
|
|
python.version: '3.12'
|
|
|
|
tox.env: py312-mode_mitogen-distro_ubuntu1604
|
|
|
|
Mito_312_ubuntu1804:
|
|
|
|
python.version: '3.12'
|
|
|
|
tox.env: py312-mode_mitogen-distro_ubuntu1804
|
|
|
|
Mito_312_ubuntu2004:
|
|
|
|
python.version: '3.12'
|
|
|
|
tox.env: py312-mode_mitogen-distro_ubuntu2004
|
2018-11-05 20:49:58 +00:00
|
|
|
|
2021-11-17 22:09:31 +00:00
|
|
|
Ans_27_210:
|
|
|
|
tox.env: py27-mode_ansible-ansible2.10
|
|
|
|
Ans_27_4:
|
|
|
|
tox.env: py27-mode_ansible-ansible4
|
2020-09-23 02:26:33 +00:00
|
|
|
|
2021-11-17 22:09:31 +00:00
|
|
|
Ans_36_210:
|
2021-11-10 01:05:37 +00:00
|
|
|
python.version: '3.6'
|
2021-11-17 22:09:31 +00:00
|
|
|
tox.env: py36-mode_ansible-ansible2.10
|
|
|
|
Ans_36_4:
|
|
|
|
python.version: '3.6'
|
|
|
|
tox.env: py36-mode_ansible-ansible4
|
2021-01-15 19:34:44 +00:00
|
|
|
|
2023-02-21 11:04:28 +00:00
|
|
|
Ans_311_210:
|
|
|
|
python.version: '3.11'
|
|
|
|
tox.env: py311-mode_ansible-ansible2.10
|
|
|
|
Ans_311_3:
|
|
|
|
python.version: '3.11'
|
|
|
|
tox.env: py311-mode_ansible-ansible3
|
|
|
|
Ans_311_4:
|
|
|
|
python.version: '3.11'
|
|
|
|
tox.env: py311-mode_ansible-ansible4
|
|
|
|
Ans_311_5:
|
|
|
|
python.version: '3.11'
|
|
|
|
tox.env: py311-mode_ansible-ansible5
|
2024-03-06 11:51:12 +00:00
|
|
|
Ans_312_6:
|
|
|
|
python.version: '3.12'
|
|
|
|
tox.env: py312-mode_ansible-ansible6
|
2022-12-13 15:57:37 +00:00
|
|
|
Ans_312_7:
|
|
|
|
python.version: '3.12'
|
|
|
|
tox.env: py312-mode_ansible-ansible7
|
2024-04-04 14:47:51 +00:00
|
|
|
Ans_312_8:
|
|
|
|
python.version: '3.12'
|
|
|
|
tox.env: py312-mode_ansible-ansible8
|
2024-04-05 18:23:29 +00:00
|
|
|
Ans_312_9:
|
|
|
|
python.version: '3.12'
|
|
|
|
tox.env: py312-mode_ansible-ansible9
|