From 795300848c4e1a508aaef40c3c82de7eb01f6ac5 Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Sun, 9 Jun 2019 12:32:12 +0200 Subject: [PATCH] Update azure-pipelines-ci.yml for Azure Pipelines --- azure-pipelines-ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/azure-pipelines-ci.yml b/azure-pipelines-ci.yml index d8a3a50bb12..19cbeb618de 100644 --- a/azure-pipelines-ci.yml +++ b/azure-pipelines-ci.yml @@ -53,6 +53,8 @@ jobs: inputs: versionSpec: '$(python.version)' - script: | + set -e + sudo add-apt-repository ppa:jonathonf/ffmpeg-4 sudo apt-get update sudo apt-get install -y --no-install-recommends \ @@ -69,13 +71,15 @@ jobs: vstsFeed: '$(ArtifactFeed)' - script: | + set -e + # Install build env sudo apt-get install -y --no-install-recommends \ libudev-dev libsqlite3-dev libavformat-dev libavcodec-dev libavdevice-dev libavutil-dev libswscale-dev libswresample-dev libavfilter-dev # Setup venv python -m venv venv - + . venv/bin/activate pip install -U pip setuptools pip install -r requirements_test_all.txt -c homeassistant/package_constraints.txt