core/azure-pipelines-ci.yml

62 lines
1.6 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
variables:
- name: ArtifactFeed
value: '2df3ae11-3bf6-49bc-a809-ba0d340d6a6d'
2019-06-07 16:38:05 +00:00
jobs:
- job: 'Pip_Install_Demo'
pool:
vmImage: 'ubuntu-latest'
strategy:
maxParallel: 1
2019-06-07 16:38:05 +00:00
matrix:
Python35:
python.version: '3.5'
Python36:
python.version: '3.6'
Python37:
python.version: '3.7'
steps:
- task: UsePythonVersion@0
displayName: 'Use Python $(python.version)'
inputs:
versionSpec: '$(python.version)'
- script: |
sudo add-apt-repository ppa:jonathonf/ffmpeg-4
2019-06-07 16:38:05 +00:00
sudo apt-get update
sudo apt-get install -y --no-install-recommends \
libudev-dev libavformat-dev libavcodec-dev libavdevice-dev libavutil-dev libswscale-dev libswresample-dev libavfilter-dev
displayName: 'Set up docker prerequisite requirement'
- task: 1ESLighthouseEng.PipelineArtifactCaching.RestoreCacheV1.RestoreCache@1
displayName: 'Restore artifacts based on Requirements'
inputs:
keyfile: 'requirements_all.txt'
targetfolder: ./venv
vstsFeed: '$(ArtifactFeed)'
- script: |
python3 -m venv venv
. venv/bin/activate
pip install -U pip setuptools
pip3 install -r requirements_all.txt -c homeassistant/package_constraints.txt
2019-06-07 16:38:05 +00:00
displayName: 'Create Virtual Environment & Install Requirements'
- task: 1ESLighthouseEng.PipelineArtifactCaching.SaveCacheV1.SaveCache@1
displayName: 'Save artifacts based on Requirements'
inputs:
keyfile: 'requirements_all.txt'
targetfolder: ./venv
vstsFeed: '$(ArtifactFeed)'