Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 && \
Copy link

@biredel biredel Jun 16, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

http://

GPLv2, last modified in 2011 and tiny.. maybe just store a copy?
For reference, what I believe to be the untampered tarball has sha256sum 09d615958121706444db67e09c40df5f753ccf1fa14846fdeb439298aa9ac3ff

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We might want to consider updating to a recent version instead?
http://www.webdav.org/neon/

neon

The neon website has moved to https://notroj.github.io/neon/

Which has a 0.34.2 instead of 0.13

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@nickvergessen it does not work as server fails the tests, still waiting for the fix to be merged by sabre ;)
sabre-io/dav#1495

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's discuss in #788

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