Skip to content

Commit 922c3e0

Browse files
committed
chore: diable composer timeout
Signed-off-by: Ferdinand Thiessen <[email protected]>
1 parent 958492d commit 922c3e0

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/phpunit-32bits.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,6 @@ jobs:
4242
uses: docker://ghcr.io/nextcloud/continuous-integration-php8.4-32bit:latest
4343
with:
4444
args: /bin/sh -c "
45-
apt-get update &&
46-
apt-get install -y unzip &&
4745
git config --global --add safe.directory /github/workspace &&
4846
composer install --no-interaction"
4947

composer.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,10 @@
7171
"Composer\\Config::disableProcessTimeout",
7272
"PHP_CLI_SERVER_WORKERS=${NEXTCLOUD_WORKERS:=4} php -S ${NEXTCLOUD_HOST:=localhost}:${NEXTCLOUD_PORT:=8080} -t ./"
7373
],
74-
"test": "phpunit --fail-on-warning --fail-on-risky --display-warnings --display-deprecations --display-phpunit-deprecations --colors=always --configuration tests/phpunit-autotest.xml",
74+
"test": [
75+
"Composer\\Config::disableProcessTimeout",
76+
"phpunit --fail-on-warning --fail-on-risky --display-warnings --display-deprecations --display-phpunit-deprecations --colors=always --configuration tests/phpunit-autotest.xml"
77+
],
7578
"test:db": "@composer run test -- --group DB --group SLOWDB",
7679
"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",
7780
"rector": "rector --config=build/rector.php && composer cs:fix",

0 commit comments

Comments
 (0)