From 7491cfd2f63461e682292d9ffdb61a1a4586efaf Mon Sep 17 00:00:00 2001 From: Clinton Hall Date: Sat, 4 Jan 2020 21:32:53 +1300 Subject: [PATCH] fix ffmpeg install issues for test --- azure-pipelines.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 948047c9..e776ae09 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -26,7 +26,9 @@ jobs: maxParallel: 5 steps: - - script: sudo apt-get install ffmpeg + - script: | + sudo apt-get update + sudo apt-get install ffmpeg displayName: 'Install ffmpeg' - task: UsePythonVersion@0