Skip to content

Commit

Permalink
feat: Add litmus test image with current PHP version (8.3)
Browse files Browse the repository at this point in the history
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
  • Loading branch information
susnux committed Apr 2, 2024
1 parent 38db275 commit 3a93f53
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
6 changes: 6 additions & 0 deletions integration-php8.3/Dockerfile
Original file line number Diff line number Diff line change
@@ -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
8 changes: 8 additions & 0 deletions litmus-php8.3/Dockerfile
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 3a93f53

Please sign in to comment.