Skip to content

Commit 665f5c4

Browse files
authored
Merge pull request #19980 from J0WI/nextcloud-32.0.0
Update Nextcloud
2 parents ded75a8 + 4d49b32 commit 665f5c4

File tree

3 files changed

+23
-8
lines changed

3 files changed

+23
-8
lines changed

library/nextcloud

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,32 @@ Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, riscv64, s390x
1818
GitCommit: f5b7b40808604dd61411d0f7a775ac5ff29a974b
1919
Directory: 30/fpm-alpine
2020

21-
Tags: 31.0.9-apache, 31.0-apache, 31-apache, apache, stable-apache, production-apache, 31.0.9, 31.0, 31, latest, stable, production
21+
Tags: 31.0.9-apache, 31.0-apache, 31-apache, stable-apache, production-apache, 31.0.9, 31.0, 31, stable, production
2222
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, riscv64, s390x
2323
GitCommit: f5b7b40808604dd61411d0f7a775ac5ff29a974b
2424
Directory: 31/apache
2525

26-
Tags: 31.0.9-fpm, 31.0-fpm, 31-fpm, fpm, stable-fpm, production-fpm
26+
Tags: 31.0.9-fpm, 31.0-fpm, 31-fpm, stable-fpm, production-fpm
2727
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, riscv64, s390x
2828
GitCommit: f5b7b40808604dd61411d0f7a775ac5ff29a974b
2929
Directory: 31/fpm
3030

31-
Tags: 31.0.9-fpm-alpine, 31.0-fpm-alpine, 31-fpm-alpine, fpm-alpine, stable-fpm-alpine, production-fpm-alpine
31+
Tags: 31.0.9-fpm-alpine, 31.0-fpm-alpine, 31-fpm-alpine, stable-fpm-alpine, production-fpm-alpine
3232
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, riscv64, s390x
3333
GitCommit: f5b7b40808604dd61411d0f7a775ac5ff29a974b
3434
Directory: 31/fpm-alpine
35+
36+
Tags: 32.0.0-apache, 32.0-apache, 32-apache, apache, 32.0.0, 32.0, 32, latest
37+
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, riscv64, s390x
38+
GitCommit: 1f87830fd6f478c993248475979472aab1787a75
39+
Directory: 32/apache
40+
41+
Tags: 32.0.0-fpm, 32.0-fpm, 32-fpm, fpm
42+
Architectures: amd64, arm32v5, arm32v7, arm64v8, i386, ppc64le, riscv64, s390x
43+
GitCommit: 1f87830fd6f478c993248475979472aab1787a75
44+
Directory: 32/fpm
45+
46+
Tags: 32.0.0-fpm-alpine, 32.0-fpm-alpine, 32-fpm-alpine, fpm-alpine
47+
Architectures: amd64, arm32v6, arm32v7, arm64v8, i386, ppc64le, riscv64, s390x
48+
GitCommit: 1f87830fd6f478c993248475979472aab1787a75
49+
Directory: 32/fpm-alpine

test/tests/nextcloud-apache-run/real-run.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ dir="$(dirname "$(readlink -f "$BASH_SOURCE")")"
66
serverImage="$1"
77

88
# Use a client image with curl for testing
9-
clientImage='buildpack-deps:buster-curl'
9+
clientImage='buildpack-deps:trixie-curl'
1010
# ensure the clientImage is ready and available
1111
if ! docker image inspect "$clientImage" &> /dev/null; then
1212
docker pull "$clientImage" > /dev/null
@@ -35,5 +35,5 @@ _request() {
3535

3636
# Check that we can request / and that it contains the pattern "Install" somewhere
3737
# <input type="submit" class="primary" value="Install" data-finishing="Installing …">
38-
_request GET '/' | grep -i '"Install"' > /dev/null
38+
_request GET '/' | grep -i -F -- 'a safe home for all your data' > /dev/null
3939
# (https://github.com/nextcloud/server/blob/68b2463107774bed28ee9e77b44e7395d49dacee/core/templates/installation.php#L164)

test/tests/nextcloud-fpm-run/real-run.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ image="$1"
88
# Build a client image with cgi-fcgi for testing
99
clientImage='librarytest/nextcloud-fpm-run:fcgi-client'
1010
docker build -t "$clientImage" - > /dev/null <<'EOF'
11-
FROM debian:bookworm-slim
11+
FROM debian:trixie-slim
1212
13-
RUN set -x && apt-get update && apt-get install -y --no-install-recommends libfcgi-bin && rm -rf /var/lib/apt/lists/*
13+
RUN set -x && apt-get update && apt-get install -y --no-install-recommends libfcgi-bin && apt-get dist-clean
1414
1515
ENTRYPOINT ["cgi-fcgi"]
1616
EOF
@@ -45,5 +45,5 @@ fcgi-request() {
4545

4646
# Check that we can request / and that it contains the pattern "Install" somewhere
4747
# <input type="submit" class="primary" value="Install" data-finishing="Installing …">
48-
fcgi-request GET '/index.php' | grep -i '"Install"' > /dev/null
48+
fcgi-request GET '/index.php' | grep -i -F -- 'a safe home for all your data' > /dev/null
4949
# (https://github.com/nextcloud/server/blob/68b2463107774bed28ee9e77b44e7395d49dacee/core/templates/installation.php#L164)

0 commit comments

Comments
 (0)