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:
authorJulius Härtl <jus@bitgrid.net>2021-03-08 11:19:58 +0300
committerJulius Härtl <jus@bitgrid.net>2021-03-08 12:40:46 +0300
commit307aa762087e5db0838037f351f2613020ddbf6b (patch)
tree3975287a344787ae4b10d0e879ba76dc1b711e1e /.github
parentee11100c77c5593f843c1745c769f120a8b5796b (diff)
Disable cypress recording for now
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/cypress.yml11
1 files changed, 6 insertions, 5 deletions
diff --git a/.github/workflows/cypress.yml b/.github/workflows/cypress.yml
index ea00e6f19..265a9f39c 100644
--- a/.github/workflows/cypress.yml
+++ b/.github/workflows/cypress.yml
@@ -15,7 +15,7 @@ jobs:
fail-fast: false
matrix:
node-version: [12.x]
- containers: [1, 2, 3]
+ # containers: [1, 2, 3]
php-versions: [ '7.4' ]
databases: [ 'sqlite' ]
server-versions: [ 'master' ]
@@ -46,12 +46,11 @@ jobs:
with:
path: apps/${{ env.APP_NAME }}
-
- name: Set up php ${{ matrix.php-versions }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
- extensions: mbstring, iconv, fileinfo, intl, sqlite, pdo_sqlite
+ extensions: mbstring, iconv, fileinfo, intl, sqlite, pdo_sqlite, zip, gd, apcu
coverage: none
- name: Set up Nextcloud
@@ -71,12 +70,14 @@ jobs:
php occ app:enable viewer
php occ app:enable text
php occ app:list
+ curl -v http://localhost:8081/index.php/login
+ cat data/nextcloud.log
- name: Cypress run
uses: cypress-io/github-action@v2
with:
- record: true
- parallel: true
+ record: false # disabled for now as we have no way to savely use the token in our org
+ parallel: false
wait-on: '${{ env.CYPRESS_baseUrl }}'
working-directory: 'apps/${{ env.APP_NAME }}'
env: