core/azure-pipelines-ci.yml

116 lines
3.0 KiB
YAML
Raw Normal View History

2019-06-07 16:38:05 +00:00
# https://dev.azure.com/home-assistant
trigger:
batch: true
branches:
include:
- dev
pr: none
resources:
containers:
- container: 35
image: python:3.5
- container: 36
image: python:3.6
- container: 37
image: python:3.7
2019-06-07 16:38:05 +00:00
variables:
- name: ArtifactFeed
value: '2df3ae11-3bf6-49bc-a809-ba0d340d6a6d'
- name: PythonMain
value: '35'
2019-06-07 16:38:05 +00:00
jobs:
- job: 'Lint'
pool:
vmImage: 'ubuntu-latest'
container: $[ variables['PythonMain'] ]
steps:
- script: |
python -m venv lint
. lint/bin/activate
pip install flake8
flake8 homeassistant tests script
displayName: 'Run flake8'
- job: 'Check'
dependsOn:
- Lint
condition: succeeded()
2019-06-07 16:38:05 +00:00
pool:
vmImage: 'ubuntu-latest'
strategy:
maxParallel: 1
2019-06-07 16:38:05 +00:00
matrix:
Python35:
python.version: '3.5'
python.container: '35'
2019-06-07 16:38:05 +00:00
Python36:
python.version: '3.6'
python.container: '36'
2019-06-07 16:38:05 +00:00
Python37:
python.version: '3.7'
python.container: '37'
container: $[ variables['python.container'] ]
2019-06-07 16:38:05 +00:00
steps:
- script: |
apt-get update
apt-get install -y --no-install-recommends \
libudev libavformat libavcodec libavdevice libavutil libswscale libswresample libavfilter
echo "$(python.version)" > .cache
2019-06-07 16:38:05 +00:00
displayName: 'Set up docker prerequisite requirement'
- task: 1ESLighthouseEng.PipelineArtifactCaching.RestoreCacheV1.RestoreCache@1
displayName: 'Restore artifacts based on Requirements'
inputs:
keyfile: 'requirements_test_all.txt, .cache'
targetfolder: './venv'
2019-06-07 16:38:05 +00:00
vstsFeed: '$(ArtifactFeed)'
- script: |
# Install build env
apt-get install -y --no-install-recommends \
libudev-dev libavformat-dev libavcodec-dev libavdevice-dev libavutil-dev libswscale-dev libswresample-dev libavfilter-dev
# Setup venv
python -m venv venv
2019-06-07 16:38:05 +00:00
. venv/bin/activate
pip install -U pip setuptools
pip install -r requirements_test_all.txt -c homeassistant/package_constraints.txt
2019-06-07 16:38:05 +00:00
displayName: 'Create Virtual Environment & Install Requirements'
condition: ne(variables['CacheRestored'], 'true')
2019-06-07 16:38:05 +00:00
- task: 1ESLighthouseEng.PipelineArtifactCaching.SaveCacheV1.SaveCache@1
displayName: 'Save artifacts based on Requirements'
inputs:
keyfile: 'requirements_test_all.txt, .cache'
targetfolder: './venv'
vstsFeed: '$(ArtifactFeed)'
- script: |
. venv/bin/activate
pip install -e .
displayName: 'Install Home Assistant for python $(python.version)'
- script: |
. venv/bin/activate
pytest --timeout=9 --durations=10 -qq -o console_output_style=count -p no:sugar tests
displayName: 'Run pytest for python $(python.version)'
- script: |
. venv/bin/activate
pip install -r requirements_all.txt -c homeassistant/package_constraints.txt
pylint homeassistant
displayName: 'Run pylint'
condition: eq(variables['python.container'], variables['PythonMain'])