From c6ee506da7d0cfff4f561648b037f400a6df81f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcel=20M=C3=BCller?= Date: Wed, 31 Jan 2024 11:31:19 +0100 Subject: [PATCH] Add federation configs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Marcel Müller --- .github/workflows/federation.yml | 5 +++++ .github/workflows/uitests.yml | 3 +++ 2 files changed, 8 insertions(+) diff --git a/.github/workflows/federation.yml b/.github/workflows/federation.yml index ec1085d48..68d092119 100644 --- a/.github/workflows/federation.yml +++ b/.github/workflows/federation.yml @@ -96,6 +96,9 @@ jobs: ./server/occ config:system:set memcache.local --value="\\OC\\Memcache\\APCu" ./server/occ config:system:set memcache.distributed --value="\\OC\\Memcache\\APCu" ./server/occ app:enable --force spreed + ./server/occ config:app:set spreed federation_enabled --value yes + ./server/occ config:system:set sharing.federation.allowSelfSignedCertificates --value true --type bool + ./server/occ config:system:set allow_local_remote_servers --value true --type bool PHP_CLI_SERVER_WORKERS=3 php -S localhost:8080 -t server/ & - name: Set up Nextcloud Federated @@ -106,6 +109,8 @@ jobs: ./server-federated/occ config:system:set memcache.local --value="\\OC\\Memcache\\APCu" ./server-federated/occ config:system:set memcache.distributed --value="\\OC\\Memcache\\APCu" ./server-federated/occ app:enable --force spreed + ./server-federated/occ config:system:set sharing.federation.allowSelfSignedCertificates --value true --type bool + ./server-federated/occ config:system:set allow_local_remote_servers --value true --type bool PHP_CLI_SERVER_WORKERS=3 php -S localhost:8081 -t server-federated/ & - name: Set up Nextcloud Federated diff --git a/.github/workflows/uitests.yml b/.github/workflows/uitests.yml index 84918c9ae..7c3410463 100644 --- a/.github/workflows/uitests.yml +++ b/.github/workflows/uitests.yml @@ -45,6 +45,9 @@ jobs: SCHEME: NextcloudTalk steps: + - name: Fail + run: exit 1 + - name: Checkout app uses: actions/checkout@v3 with: