ci: Expand macOS coverage to 10.14, latest release on Azure Pipelines
10.14 will be retired on Azure mid December 2021. I want to get so test runs while we can.
This commit is contained in:
parent
8276b81b7d
commit
cadd393cd7
|
@ -9,11 +9,12 @@ steps:
|
||||||
displayName: Install python
|
displayName: Install python
|
||||||
inputs:
|
inputs:
|
||||||
versionSpec: '$(python.version)'
|
versionSpec: '$(python.version)'
|
||||||
|
condition: ne(variables['python.version'], '')
|
||||||
|
|
||||||
- script: python -mpip install tox
|
- script: python -mpip install tox
|
||||||
displayName: Install tooling
|
displayName: Install tooling
|
||||||
|
|
||||||
- script: tox -e "$(tox.env)"
|
- script: python -mtox -e "$(tox.env)"
|
||||||
displayName: "Run tests"
|
displayName: "Run tests"
|
||||||
env:
|
env:
|
||||||
AWS_ACCESS_KEY_ID: $(AWS_ACCESS_KEY_ID)
|
AWS_ACCESS_KEY_ID: $(AWS_ACCESS_KEY_ID)
|
||||||
|
|
|
@ -9,8 +9,27 @@
|
||||||
#ANSIBLE_VERBOSITY: 3
|
#ANSIBLE_VERBOSITY: 3
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
- job: Mac1014
|
||||||
|
# vanilla Ansible is really slow
|
||||||
|
timeoutInMinutes: 120
|
||||||
|
steps:
|
||||||
|
- template: azure-pipelines-steps.yml
|
||||||
|
pool:
|
||||||
|
# https://github.com/actions/virtual-environments/blob/main/images/macos/
|
||||||
|
vmImage: macOS-10.14
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
Mito_27:
|
||||||
|
python.version: '2.7'
|
||||||
|
tox.env: py27-mode_mitogen
|
||||||
|
Mito_36:
|
||||||
|
python.version: '3.6'
|
||||||
|
tox.env: py36-mode_mitogen
|
||||||
|
Mito_39:
|
||||||
|
python.version: '3.9'
|
||||||
|
tox.env: py39-mode_mitogen
|
||||||
|
|
||||||
- job: Mac
|
- job: Mac1015
|
||||||
# vanilla Ansible is really slow
|
# vanilla Ansible is really slow
|
||||||
timeoutInMinutes: 120
|
timeoutInMinutes: 120
|
||||||
steps:
|
steps:
|
||||||
|
@ -23,6 +42,12 @@ jobs:
|
||||||
Mito_27:
|
Mito_27:
|
||||||
python.version: '2.7'
|
python.version: '2.7'
|
||||||
tox.env: py27-mode_mitogen
|
tox.env: py27-mode_mitogen
|
||||||
|
Mito_36:
|
||||||
|
python.version: '3.6'
|
||||||
|
tox.env: py36-mode_mitogen
|
||||||
|
Mito_39:
|
||||||
|
python.version: '3.9'
|
||||||
|
tox.env: py39-mode_mitogen
|
||||||
|
|
||||||
# TODO: test python3, python3 tests are broken
|
# TODO: test python3, python3 tests are broken
|
||||||
Loc_27_210:
|
Loc_27_210:
|
||||||
|
@ -52,6 +77,46 @@ jobs:
|
||||||
STRATEGY: linear
|
STRATEGY: linear
|
||||||
ANSIBLE_SKIP_TAGS: resource_intensive
|
ANSIBLE_SKIP_TAGS: resource_intensive
|
||||||
|
|
||||||
|
- job: MacLatest
|
||||||
|
# vanilla Ansible is really slow
|
||||||
|
timeoutInMinutes: 120
|
||||||
|
steps:
|
||||||
|
- template: azure-pipelines-steps.yml
|
||||||
|
pool:
|
||||||
|
# https://github.com/actions/virtual-environments/blob/main/images/macos/
|
||||||
|
vmImage: macOS-latest
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
Mito_27:
|
||||||
|
tox.env: py27-mode_mitogen
|
||||||
|
Mito_37:
|
||||||
|
python.version: '3.7'
|
||||||
|
tox.env: py37-mode_mitogen
|
||||||
|
Mito_39:
|
||||||
|
python.version: '3.9'
|
||||||
|
tox.env: py39-mode_mitogen
|
||||||
|
|
||||||
|
# TODO: test python3, python3 tests are broken
|
||||||
|
Loc_27_210:
|
||||||
|
tox.env: py27-mode_localhost-ansible2.10
|
||||||
|
Loc_27_3:
|
||||||
|
tox.env: py27-mode_localhost-ansible3
|
||||||
|
Loc_27_4:
|
||||||
|
tox.env: py27-mode_localhost-ansible4
|
||||||
|
|
||||||
|
# NOTE: this hangs when ran in Ubuntu 18.04
|
||||||
|
Van_27_210:
|
||||||
|
tox.env: py27-mode_localhost-ansible2.10
|
||||||
|
STRATEGY: linear
|
||||||
|
ANSIBLE_SKIP_TAGS: resource_intensive
|
||||||
|
Van_27_3:
|
||||||
|
tox.env: py27-mode_localhost-ansible3
|
||||||
|
STRATEGY: linear
|
||||||
|
ANSIBLE_SKIP_TAGS: resource_intensive
|
||||||
|
Van_27_4:
|
||||||
|
tox.env: py27-mode_localhost-ansible4
|
||||||
|
STRATEGY: linear
|
||||||
|
ANSIBLE_SKIP_TAGS: resource_intensive
|
||||||
|
|
||||||
- job: Linux
|
- job: Linux
|
||||||
pool:
|
pool:
|
||||||
|
|
Loading…
Reference in New Issue