Skip to content

Commit

Permalink
Add integration images for PHP 8.1 and 8.2
Browse files Browse the repository at this point in the history
Signed-off-by: Joas Schilling <[email protected]>
  • Loading branch information
nickvergessen committed Feb 2, 2023
1 parent 9dbb785 commit 51f464f
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
7 changes: 7 additions & 0 deletions integration-php8.1/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
FROM ghcr.io/nextcloud/continuous-integration-php8.1: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 && \
cd /tmp/server/server/tests/acceptance && composer install && \
rm -rf /tmp/server
7 changes: 7 additions & 0 deletions integration-php8.2/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
FROM ghcr.io/nextcloud/continuous-integration-php8.2: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 && \
cd /tmp/server/server/tests/acceptance && composer install && \
rm -rf /tmp/server

0 comments on commit 51f464f

Please sign in to comment.