From 42702fa96aebfc6229d617adab63647c77d084bf Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Thu, 12 Nov 2020 19:38:54 +0100 Subject: [PATCH] root: fix missing libxmlsec1-dev pkg-config packages --- Dockerfile | 2 +- azure-pipelines.yml | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index bc8a1a87c..1f6ce2a56 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,7 +20,7 @@ RUN apt-get update && \ curl https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add - && \ echo "deb http://apt.postgresql.org/pub/repos/apt buster-pgdg main" > /etc/apt/sources.list.d/pgdg.list && \ apt-get update && \ - apt-get install -y --no-install-recommends postgresql-client-12 postgresql-client-11 build-essential && \ + apt-get install -y --no-install-recommends postgresql-client-12 postgresql-client-11 build-essential libxmlsec1-dev pkg-config && \ apt-get clean && \ pip install -r /requirements.txt --no-cache-dir && \ apt-get remove --purge -y build-essential && \ diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 4c5053918..377ff19c8 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -26,6 +26,7 @@ stages: - task: CmdLine@2 inputs: script: | + sudo apt install libxmlsec1-dev pkg-config sudo pip install -U wheel pipenv pipenv install --dev - task: CmdLine@2 @@ -41,6 +42,7 @@ stages: - task: CmdLine@2 inputs: script: | + sudo apt install libxmlsec1-dev pkg-config sudo pip install -U wheel pipenv pipenv install --dev - task: CmdLine@2 @@ -56,6 +58,7 @@ stages: - task: CmdLine@2 inputs: script: | + sudo apt install libxmlsec1-dev pkg-config sudo pip install -U wheel pipenv pipenv install --dev pipenv install --dev prospector --skip-lock @@ -72,6 +75,7 @@ stages: - task: CmdLine@2 inputs: script: | + sudo apt install libxmlsec1-dev pkg-config sudo pip install -U wheel pipenv pipenv install --dev - task: CmdLine@2 @@ -93,6 +97,7 @@ stages: - task: CmdLine@2 inputs: script: | + sudo apt install libxmlsec1-dev pkg-config sudo pip install -U wheel pipenv pipenv install --dev - task: CmdLine@2 @@ -116,6 +121,7 @@ stages: - task: CmdLine@2 inputs: script: | + sudo apt install libxmlsec1-dev pkg-config sudo pip install -U wheel pipenv pipenv install --dev - task: CmdLine@2 @@ -139,6 +145,7 @@ stages: inputs: script: | git checkout $(git describe --abbrev=0 --match 'version/*') + sudo apt install libxmlsec1-dev pkg-config sudo pip install -U wheel pipenv pipenv install --dev - task: CmdLine@2 @@ -179,6 +186,7 @@ stages: - task: CmdLine@2 inputs: script: | + sudo apt install libxmlsec1-dev pkg-config sudo pip install -U wheel pipenv pipenv install --dev - task: CmdLine@2 @@ -221,6 +229,7 @@ stages: - task: CmdLine@2 inputs: script: | + sudo apt install libxmlsec1-dev pkg-config sudo pip install -U wheel pipenv pipenv install --dev - task: DockerCompose@0 @@ -290,6 +299,7 @@ stages: - task: CmdLine@2 inputs: script: | + sudo apt install libxmlsec1-dev pkg-config sudo pip install -U wheel pipenv pipenv install --dev pipenv run coverage combine coverage-e2e/coverage coverage-unittest/coverage