From 3a93f530c36bded684ce58a224bd9ea9467d08ab Mon Sep 17 00:00:00 2001 From: Ferdinand Thiessen Date: Tue, 2 Apr 2024 15:46:07 +0200 Subject: [PATCH] feat: Add litmus test image with current PHP version (8.3) Signed-off-by: Ferdinand Thiessen --- integration-php8.3/Dockerfile | 6 ++++++ litmus-php8.3/Dockerfile | 8 ++++++++ 2 files changed, 14 insertions(+) create mode 100644 integration-php8.3/Dockerfile create mode 100644 litmus-php8.3/Dockerfile diff --git a/integration-php8.3/Dockerfile b/integration-php8.3/Dockerfile new file mode 100644 index 0000000..cea785e --- /dev/null +++ b/integration-php8.3/Dockerfile @@ -0,0 +1,6 @@ +FROM ghcr.io/nextcloud/continuous-integration-php8.3:latest + +RUN mkdir /tmp/server && \ + cd /tmp/server && git clone --recursive https://github.com/nextcloud/server.git && \ + cd /tmp/server/server/build/integration && composer install && \ + rm -rf /tmp/server diff --git a/litmus-php8.3/Dockerfile b/litmus-php8.3/Dockerfile new file mode 100644 index 0000000..5f1a035 --- /dev/null +++ b/litmus-php8.3/Dockerfile @@ -0,0 +1,8 @@ +FROM ghcr.io/nextcloud/continuous-integration-php8.3:latest + +RUN apt-get update && apt-get install -y gcc coreutils make python && \ + mkdir -p /tmp/litmus && \ + wget -O /tmp/litmus/litmus-0.13.tar.gz http://www.webdav.org/neon/litmus/litmus-0.13.tar.gz && \ + cd /tmp/litmus && tar -xzf litmus-0.13.tar.gz && \ + cd /tmp/litmus/litmus-0.13 && ./configure && make && rm -f /tmp/litmus-0.13.tar.gz && \ + apt-get clean