Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormax-nextcloud <max@nextcloud.com>2022-03-31 15:50:47 +0300
committerGitHub <noreply@github.com>2022-03-31 15:50:47 +0300
commite608225885e657a425e1d8f9de72ceec62ff94f4 (patch)
tree772d285261f3447caf6de88f51d5bee28d73cc9a
parent2a267643abd7a1a9a35d666cb226e4bbb8767379 (diff)
parent302e999101723bc68374968ccc8d188d9beca5c6 (diff)
Merge pull request #2249 from nextcloud/debug/ci-failurev24.0.0beta2
debug: ci failures with server errors in cypress
-rw-r--r--.github/workflows/cypress.yml9
-rw-r--r--cypress.json2
2 files changed, 10 insertions, 1 deletions
diff --git a/.github/workflows/cypress.yml b/.github/workflows/cypress.yml
index 1f739129f..4004a485e 100644
--- a/.github/workflows/cypress.yml
+++ b/.github/workflows/cypress.yml
@@ -81,6 +81,7 @@ jobs:
mkdir data
php occ maintenance:install --verbose --database=${{ matrix.databases }} --database-name=nextcloud --database-host=127.0.0.1 --database-port=$DB_PORT --database-user=root --database-pass=rootpassword --admin-user admin --admin-pass admin
php occ config:system:set memcache.local --value="\\OC\\Memcache\\APCu"
+ php occ config:system:set debug --value=true --type=boolean
php -f index.php
php -S 0.0.0.0:8081 &
export OC_PASS=1234561
@@ -111,3 +112,11 @@ jobs:
name: Upload screenshots
path: apps/${{ env.APP_NAME }}/cypress/screenshots/
retention-days: 5
+
+ - name: Upload nextcloud logs
+ uses: actions/upload-artifact@v2
+ if: failure()
+ with:
+ name: Upload nextcloud log
+ path: data/nextcloud.log
+ retention-days: 5
diff --git a/cypress.json b/cypress.json
index 93841dbc8..80dff6192 100644
--- a/cypress.json
+++ b/cypress.json
@@ -2,6 +2,6 @@
"baseUrl": "https://localhost:8081/index.php/",
"projectId": "hx9gqy",
"viewportWidth": 1280,
- "viewportHeight": 720,
+ "viewportHeight": 900,
"experimentalSessionSupport": true
}