From ff539cda26780b79fc9ec6f8d7e194051153b675 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gina=20H=C3=A4u=C3=9Fge?= Date: Sat, 22 Jul 2023 04:05:01 +0200 Subject: [PATCH] build: Remove temporary libssl package workaround (#86) It seems to no longer be needed against current RPi arm32 packages and in fact makes the build fail as the package cannot be found any more. --- .github/ci/Dockerfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/ci/Dockerfile b/.github/ci/Dockerfile index 4c890ab..47e45de 100644 --- a/.github/ci/Dockerfile +++ b/.github/ci/Dockerfile @@ -13,9 +13,7 @@ RUN [ "$BUILD_TYPE" != "raspi" ] || \ echo "deb http://archive.raspberrypi.org/debian/ $DEBIAN_VERSION main" > /etc/apt/sources.list.d/raspi.list && \ apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 9165938D90FDDD2E 82B129927FA3303E && \ apt-get -y update && \ - apt-get -y install libcamera-dev liblivemedia-dev && \ - # Temporary workaround to RPI arm32 bug - ( [ "$(dpkg --print-architecture)" != "armhf" ] || apt-get --allow-downgrades -y install libssl1.1=1.1.1n-0+deb11u4+rpt1 ) \ + apt-get -y install libcamera-dev liblivemedia-dev \ ) # Default packages