Skip to content

Commit d8b0873

Browse files
committed
Fix
1 parent c3eae41 commit d8b0873

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/nightly.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ function e(string $cmd, string $extra = ''): string {
3131
"main",
3232
null,
3333
["./phpunit"],
34-
2
34+
1
3535
];
3636

3737
$repos["wordpress"] = [
@@ -45,11 +45,11 @@ function (): void {
4545
file_put_contents('wp-tests-config.php', $f);
4646
},
4747
["vendor/bin/phpunit"],
48-
2
48+
1
4949
];
5050

5151
foreach (['amp', 'cache', 'dns', 'file', 'http', 'parallel', 'parser', 'pipeline', 'process', 'serialization', 'socket', 'sync', 'websocket-client', 'websocket-server'] as $repo) {
52-
$repos["amphp-$repo"] = ["https://github.com/amphp/$repo.git", "", null, ["vendor/bin/phpunit"], 2];
52+
$repos["amphp-$repo"] = ["https://github.com/amphp/$repo.git", "", null, ["vendor/bin/phpunit"], 1];
5353
}
5454

5555
$repos["laravel"] = [
@@ -61,11 +61,11 @@ function (): void {
6161
file_put_contents("tests/Filesystem/FilesystemTest.php", $c);
6262
},
6363
["vendor/bin/phpunit", "--exclude-group", "skip"],
64-
2
64+
1
6565
];
6666

6767
foreach (['async', 'cache', 'child-process', 'datagram', 'dns', 'event-loop', 'promise', 'promise-stream', 'promise-timer', 'stream'] as $repo) {
68-
$repos["reactphp-$repo"] = ["https://github.com/reactphp/$repo.git", "", null, ["vendor/bin/phpunit"], 2];
68+
$repos["reactphp-$repo"] = ["https://github.com/reactphp/$repo.git", "", null, ["vendor/bin/phpunit"], 1];
6969
}
7070

7171
$repos["revolt"] = ["https://github.com/revoltphp/event-loop.git", "", null, ["vendor/bin/phpunit"], 2];
@@ -101,7 +101,7 @@ function (): iterable {
101101
}
102102
}
103103
},
104-
2
104+
1
105105
];
106106

107107
$finalStatus = 0;
@@ -255,4 +255,4 @@ function (): iterable {
255255

256256
printMutex("All done!");
257257

258-
die($finalStatus);
258+
die($finalStatus);

.github/workflows/nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ jobs:
400400
export ASAN_OPTIONS=exitcode=139
401401
export PHPSECLIB_ALLOW_JIT=1
402402
php /usr/bin/composer install --no-progress --ignore-platform-reqs
403-
php $GITHUB_WORKSPACE/.github/patch.php vendor/bin/paratest --verbose --configuration=tests/phpunit.xml --runner=WrapperRunner || exit $?
403+
php $GITHUB_WORKSPACE/.github/jit_check.php vendor/bin/paratest --verbose --configuration=tests/phpunit.xml --runner=WrapperRunner || exit $?
404404
405405
- name: Test Psalm
406406
if: matrix.branch.ref != 'PHP-8.0'

0 commit comments

Comments
 (0)