-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add litmus test image with current PHP version (8.3)
Signed-off-by: Ferdinand Thiessen <[email protected]>
- Loading branch information
Showing
2 changed files
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |