diff --git a/.github/workflows/e2e.yaml b/.github/workflows/e2e.yaml index 3f7f1a04c..d1993ce8d 100644 --- a/.github/workflows/e2e.yaml +++ b/.github/workflows/e2e.yaml @@ -95,8 +95,16 @@ jobs: DB_PORT: 4444 run: | mkdir data - php occ maintenance:install --verbose --database=mysql --database-name=nextcloud --database-host=127.0.0.1 --database-port=$DB_PORT --database-user=root --database-pass=rootpassword --admin-user admin --admin-pass password - git clone --depth 1 --branch ${{ matrix.server-versions }} https://github.com/nextcloud/viewer apps/viewer + php occ maintenance:install \ + --verbose \ + --database=mysql \ + --database-name=nextcloud \ + --database-host=127.0.0.1 \ + --database-port=$DB_PORT \ + --database-user=root \ + --database-pass=rootpassword \ + --admin-user admin \ + --admin-pass password - name: Run tests run: | @@ -168,8 +176,16 @@ jobs: DB_PORT: 4444 run: | mkdir data - php occ maintenance:install --verbose --database=pgsql --database-name=nextcloud --database-host=127.0.0.1 --database-port=$DB_PORT --database-user=postgres --database-pass=rootpassword --admin-user admin --admin-pass password - git clone --depth 1 --branch ${{ matrix.server-versions }} https://github.com/nextcloud/viewer apps/viewer + php occ maintenance:install \ + --verbose \ + --database=pgsql \ + --database-name=nextcloud \ + --database-host=127.0.0.1 \ + --database-port=$DB_PORT \ + --database-user=postgres \ + --database-pass=rootpassword \ + --admin-user admin \ + --admin-pass password - name: Run tests run: | @@ -227,8 +243,10 @@ jobs: DB_PORT: 4444 run: | mkdir data - php occ maintenance:install --verbose --admin-user admin --admin-pass password - git clone --depth 1 --branch ${{ matrix.server-versions }} https://github.com/nextcloud/viewer apps/viewer + php occ maintenance:install \ + --verbose \ + --admin-user admin \ + --admin-pass password - name: Run tests run: | diff --git a/scripts/ci-test.sh b/scripts/ci-test.sh index de6a6675d..996247ce0 100755 --- a/scripts/ci-test.sh +++ b/scripts/ci-test.sh @@ -24,7 +24,6 @@ make bin-ext cd ../.. # Enable apps -php occ app:enable --force viewer php occ app:enable --force memories # Run repair steps