-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Build pipeline fix, drop Drupal <10.1 support, flag PHP 8.2 support #100
Conversation
@@ -139,10 +139,16 @@ | |||
}, | |||
"scripts": { | |||
"post-install-cmd": [ | |||
"Pronovix\\SimpleSymlink\\ScriptHandler::createSymlinks" | |||
"@symlink-for-local-dev-env" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As a replacement of pronovix/simple-symlink
Current builds are failing due to issues related to this old trick that happened in older versions of Drupal. https://github.com/Pronovix/swagger_ui_formatter/actions/runs/8597299839/job/23555697813 |
3efccf3
to
2f273fc
Compare
also fix QA pipeline
* Use `docker compose` instead of `docker-compose` * Remove PHP version lock suggestion from .env
.dev/.ci/run-phpunit-tests.sh
Outdated
@@ -5,5 +5,5 @@ set -e | |||
if [[ ${RUN_PHPUNIT_TESTS} == true ]]; then | |||
# Custom bootstrap file is required to prevent infinite loop caused by symlinking that Drupal's original | |||
# bootstrap file cannot handle. | |||
docker-compose run --rm php ./vendor/bin/phpunit -c web/core -v --debug --printer '\Drupal\Tests\Listeners\HtmlOutputPrinter' --bootstrap=vendor/pronovix/drupal-qa/src/Drupal/PhpUnit/bootstrap.php web/modules/drupal_module/tests/ | |||
docker-compose run --rm php ./vendor/bin/phpunit -c web/core -v --debug --printer '\Drupal\Tests\Listeners\HtmlOutputPrinter' --bootstrap=/mnt/files/local_mount/tests/src/bootstrap.php web/modules/drupal_module/tests/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This has to be an absolute path... ;S
also fix QA pipeline
Closes #93.