From 48ee1f0c10ec01a53c70f1e94847288b1b377bcc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= <1005065+DeepDiver1975@users.noreply.github.com> Date: Thu, 23 Apr 2026 20:42:14 +0200 Subject: [PATCH 1/2] feat: add smoke test inputs to CI workflow Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/main.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6a66fc1..3bdd025 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -26,6 +26,12 @@ jobs: push: ${{ github.ref == 'refs/heads/master' }} trivy-ignore-files: ${{ matrix.release.trivy-ignore }} docker-extra-tags: ${{ matrix.release.extra-tags }} + smoke-test-port: "8080" + smoke-test-url: "http://localhost:8080/status.php" + smoke-test-env: | + OWNCLOUD_DOMAIN=localhost:8080 + OWNCLOUD_DB_TYPE=sqlite3 + smoke-test-version-jq: ${{ matrix.release.smoke-version-jq }} secrets: docker-hub-password: ${{ secrets.DOCKERHUB_TOKEN }} @@ -40,20 +46,24 @@ jobs: 10.16 10 latest + smoke-version-jq: ".versionstring" - version: 10.16.1 tarball: https://download.owncloud.com/server/stable/owncloud-complete-20260218.tar.bz2 base: v22.04 trivy-ignore: v22.04/10.16.1/.trivyignore + smoke-version-jq: ".versionstring" - version: 10.15.3 tarball: https://download.owncloud.com/server/stable/owncloud-complete-20250703.tar.bz2 base: v22.04 trivy-ignore: v22.04/10.15.3/.trivyignore extra-tags: | 10.15 + smoke-version-jq: ".versionstring" - version: 11.0.0-prealpha tarball: https://download.owncloud.com/server/daily/owncloud-daily-master.tar.bz2 base: v24.04 trivy-ignore: v24.04/11.0.0-prealpha/.trivyignore + smoke-version-jq: "" update-docker-hub-description: needs: build From d5d616f84f83283dbcc6f9ddafb77bd9efd92636 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= <1005065+DeepDiver1975@users.noreply.github.com> Date: Thu, 23 Apr 2026 20:59:26 +0200 Subject: [PATCH 2/2] fix: correct sqlite db type and add trusted domains for smoke test Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/main.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3bdd025..d025084 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -30,7 +30,8 @@ jobs: smoke-test-url: "http://localhost:8080/status.php" smoke-test-env: | OWNCLOUD_DOMAIN=localhost:8080 - OWNCLOUD_DB_TYPE=sqlite3 + OWNCLOUD_TRUSTED_DOMAINS=localhost:8080 + OWNCLOUD_DB_TYPE=sqlite smoke-test-version-jq: ${{ matrix.release.smoke-version-jq }} secrets: docker-hub-password: ${{ secrets.DOCKERHUB_TOKEN }}