From ace70998d7d948c7b31d7f837cce2e1b05c42478 Mon Sep 17 00:00:00 2001 From: Jason Rhinelander Date: Tue, 28 Mar 2023 09:21:15 +1100 Subject: [PATCH] fix debian sid builds Python 3.11+ complains when trying to use pip globally, but for CI it seems fine to override (and potentially break the temporary CI image). --- .drone.jsonnet | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.drone.jsonnet b/.drone.jsonnet index 75e29a0..f09038a 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -31,7 +31,7 @@ local debian_pipeline(name, image: image, pull: 'always', [if allow_fail then 'failure']: 'ignore', - environment: { SSH_KEY: { from_secret: 'SSH_KEY' } }, + environment: { SSH_KEY: { from_secret: 'SSH_KEY' }, PIP_BREAK_SYSTEM_PACKAGES: '1' }, commands: [ 'echo "Building on ${DRONE_STAGE_MACHINE}"', 'echo "man-db man-db/auto-update boolean false" | debconf-set-selections',