Skip to content

Commit 3a93f53

Browse files
committed
feat: Add litmus test image with current PHP version (8.3)
Signed-off-by: Ferdinand Thiessen <[email protected]>
1 parent 38db275 commit 3a93f53

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

integration-php8.3/Dockerfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
FROM ghcr.io/nextcloud/continuous-integration-php8.3:latest
2+
3+
RUN mkdir /tmp/server && \
4+
cd /tmp/server && git clone --recursive https://github.com/nextcloud/server.git && \
5+
cd /tmp/server/server/build/integration && composer install && \
6+
rm -rf /tmp/server

litmus-php8.3/Dockerfile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
FROM ghcr.io/nextcloud/continuous-integration-php8.3:latest
2+
3+
RUN apt-get update && apt-get install -y gcc coreutils make python && \
4+
mkdir -p /tmp/litmus && \
5+
wget -O /tmp/litmus/litmus-0.13.tar.gz http://www.webdav.org/neon/litmus/litmus-0.13.tar.gz && \
6+
cd /tmp/litmus && tar -xzf litmus-0.13.tar.gz && \
7+
cd /tmp/litmus/litmus-0.13 && ./configure && make && rm -f /tmp/litmus-0.13.tar.gz && \
8+
apt-get clean

0 commit comments

Comments
 (0)