Skip to content

Commit

Permalink
e2e: remove viewer
Browse files Browse the repository at this point in the history
Signed-off-by: Varun Patil <[email protected]>
  • Loading branch information
pulsejet committed Mar 11, 2024
1 parent d44ecac commit ccc855c
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 7 deletions.
30 changes: 24 additions & 6 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down Expand Up @@ -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: |
Expand Down Expand Up @@ -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: |
Expand Down
1 change: 0 additions & 1 deletion scripts/ci-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ccc855c

Please sign in to comment.