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

github.com/nextcloud/privacy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2022-04-04 17:31:03 +0300
committerJoas Schilling <coding@schilljs.com>2022-04-04 17:31:03 +0300
commite7d26b2ec3d32f148bfa18ffc044fe7724c972b3 (patch)
tree3a1513bcf93f55677b51b527d5f045882132ccec
parent596a5132c8caa0672e1b3a67d918595f34689089 (diff)
Comment out option
Signed-off-by: Joas Schilling <coding@schilljs.com>
-rw-r--r--.github/workflows/phpunit-mysql.yml2
-rw-r--r--.github/workflows/phpunit-oci.yml2
-rw-r--r--.github/workflows/phpunit-pgsql.yml4
-rw-r--r--.github/workflows/phpunit-sqlite.yml4
4 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/phpunit-mysql.yml b/.github/workflows/phpunit-mysql.yml
index 194224d..73230a9 100644
--- a/.github/workflows/phpunit-mysql.yml
+++ b/.github/workflows/phpunit-mysql.yml
@@ -10,7 +10,7 @@ on:
env:
# Location of the phpunit.xml and phpunit.integration.xml files
# Comment to disable
- PHPUNIT_CONFIG: ./tests/phpunit.xml
+ # PHPUNIT_CONFIG: ./tests/phpunit.xml
PHPUNIT_INTEGRATION_CONFIG: ./tests/phpunit.integration.xml
jobs:
diff --git a/.github/workflows/phpunit-oci.yml b/.github/workflows/phpunit-oci.yml
index b9d4c99..12e844b 100644
--- a/.github/workflows/phpunit-oci.yml
+++ b/.github/workflows/phpunit-oci.yml
@@ -10,7 +10,7 @@ on:
env:
# Location of the phpunit.xml and phpunit.integration.xml files
# Comment to disable
- PHPUNIT_CONFIG: ./tests/phpunit.xml
+ # PHPUNIT_CONFIG: ./tests/phpunit.xml
PHPUNIT_INTEGRATION_CONFIG: ./tests/phpunit.integration.xml
jobs:
diff --git a/.github/workflows/phpunit-pgsql.yml b/.github/workflows/phpunit-pgsql.yml
index 003f64e..eef97da 100644
--- a/.github/workflows/phpunit-pgsql.yml
+++ b/.github/workflows/phpunit-pgsql.yml
@@ -10,7 +10,7 @@ on:
env:
# Location of the phpunit.xml and phpunit.integration.xml files
# Comment to disable
- PHPUNIT_CONFIG: ./tests/phpunit.xml
+ # PHPUNIT_CONFIG: ./tests/phpunit.xml
PHPUNIT_INTEGRATION_CONFIG: ./tests/phpunit.integration.xml
jobs:
@@ -70,7 +70,7 @@ jobs:
DB_PORT: 4444
run: |
mkdir data
- ./occ maintenance:install --verbose --database=pgsql --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
+ ./occ maintenance:install --verbose --database=pgsql --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
./occ app:enable --force ${{ env.APP_NAME }}
php -S localhost:8080 &
diff --git a/.github/workflows/phpunit-sqlite.yml b/.github/workflows/phpunit-sqlite.yml
index 38e56d1..d4b7e8d 100644
--- a/.github/workflows/phpunit-sqlite.yml
+++ b/.github/workflows/phpunit-sqlite.yml
@@ -10,7 +10,7 @@ on:
env:
# Location of the phpunit.xml and phpunit.integration.xml files
# Comment to disable
- PHPUNIT_CONFIG: ./tests/phpunit.xml
+ # PHPUNIT_CONFIG: ./tests/phpunit.xml
PHPUNIT_INTEGRATION_CONFIG: ./tests/phpunit.integration.xml
jobs:
@@ -59,7 +59,7 @@ jobs:
DB_PORT: 4444
run: |
mkdir data
- ./occ maintenance:install --verbose --database=sqlite --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
+ ./occ maintenance:install --verbose --database=sqlite --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
./occ app:enable --force ${{ env.APP_NAME }}
php -S localhost:8080 &