Browse Source
chore: diable composer timeout
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
pull/57051/head
Ferdinand Thiessen
8 months ago
No known key found for this signature in database
GPG Key ID: 45FAE7268762B400
2 changed files with
4 additions and
3 deletions
-
.github/workflows/phpunit-32bits.yml
-
composer.json
|
|
|
@ -42,8 +42,6 @@ jobs: |
|
|
|
uses: docker://ghcr.io/nextcloud/continuous-integration-php8.4-32bit:latest |
|
|
|
with: |
|
|
|
args: /bin/sh -c " |
|
|
|
apt-get update && |
|
|
|
apt-get install -y unzip && |
|
|
|
git config --global --add safe.directory /github/workspace && |
|
|
|
composer install --no-interaction" |
|
|
|
|
|
|
|
|
|
|
|
@ -71,7 +71,10 @@ |
|
|
|
"Composer\\Config::disableProcessTimeout", |
|
|
|
"PHP_CLI_SERVER_WORKERS=${NEXTCLOUD_WORKERS:=4} php -S ${NEXTCLOUD_HOST:=localhost}:${NEXTCLOUD_PORT:=8080} -t ./" |
|
|
|
], |
|
|
|
"test": "phpunit --fail-on-warning --fail-on-risky --display-warnings --display-deprecations --display-phpunit-deprecations --colors=always --configuration tests/phpunit-autotest.xml", |
|
|
|
"test": [ |
|
|
|
"Composer\\Config::disableProcessTimeout", |
|
|
|
"phpunit --fail-on-warning --fail-on-risky --display-warnings --display-deprecations --display-phpunit-deprecations --colors=always --configuration tests/phpunit-autotest.xml" |
|
|
|
], |
|
|
|
"test:db": "@composer run test -- --group DB --group SLOWDB", |
|
|
|
"test:files_external": "phpunit --fail-on-warning --fail-on-risky --display-warnings --display-deprecations --display-phpunit-deprecations --colors=always --configuration tests/phpunit-autotest-external.xml", |
|
|
|
"rector": "rector --config=build/rector.php && composer cs:fix", |
|
|
|
|