Skip to content

Commit e95ba52

Browse files
committed
Merge branch 'PHP-8.3'
* PHP-8.3: [skip ci] Fix laravel community build
2 parents 3fd1e57 + 0bd1fdd commit e95ba52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@ jobs:
402402
git rev-parse HEAD
403403
php /usr/bin/composer install --no-progress --ignore-platform-reqs
404404
# Hack to disable a test that hangs
405-
php -r '$c = file_get_contents("tests/Filesystem/FilesystemTest.php"); $c = str_replace("*/\n public function testSharedGet()", "* @group skip\n */\n public function testSharedGet()", $c); file_put_contents("tests/Filesystem/FilesystemTest.php", $c);'
405+
php -r '$c = file_get_contents("tests/Filesystem/FilesystemTest.php"); $c = str_replace("public function testSharedGet()", "/** @group skip */\n public function testSharedGet()", $c); file_put_contents("tests/Filesystem/FilesystemTest.php", $c);'
406406
export ASAN_OPTIONS=exitcode=139
407407
php vendor/bin/phpunit --exclude-group skip || EXIT_CODE=$?
408408
if [ ${EXIT_CODE:-0} -gt 128 ]; then

0 commit comments

Comments
 (0)