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:
-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
}