|
1 | | -# Details about the install.yaml file are at https://ddev.readthedocs.io/en/latest/users/extend/additional-services/#sections-and-features-of-ddev-get-add-on-installyaml |
2 | | - |
3 | | -name: ddev-drupal-core-dev |
4 | | - |
5 | | -project_files: |
6 | | - - config.ddev-drupal-core-dev.yaml |
7 | | - - docker-compose.core-dev-selenium.yaml |
8 | | - - core-dev/phpunit-firefox.xml |
9 | | - - core-dev/phpunit-chrome.xml |
10 | | - - commands/web/drupal |
11 | | - - commands/web/drush |
12 | | - - commands/web/phpunit |
13 | | - - commands/web/nightwatch |
14 | | - - core-dev/install_drush.sh |
15 | | - - core-dev/gitignore |
16 | | - - core-dev/.env |
17 | | - - core-dev/src/Command/AdminLoginCommand.php |
18 | | - - core-dev/src/Command/BootCommand.php |
19 | | - - core-dev/src/Command/CacheCommand.php |
20 | | - - core-dev/src/Command/TestCommand.php |
21 | | - - core-dev/src/Command/TestBrowserCommand.php |
22 | | - - core-dev/src/Command/UninstallCommand.php |
23 | | - |
24 | | -post_install_actions: |
25 | | - - cp core-dev/phpunit-chrome.xml ../core/phpunit.xml |
26 | | - - perl -pi -e "s|DRUPAL_CORE_DDEV_URL|$DDEV_PRIMARY_URL|g" ../core/phpunit.xml |
27 | | - - cp core-dev/.env ../core/.env |
28 | | - - cp core-dev/gitignore ../.gitignore |
29 | | - - mkdir -p ../test_output |
30 | | - - chmod +w ../test_output |
31 | | - - cd ../core && ddev yarn |
32 | | - |
33 | | -removal_actions: |
34 | | - - | |
35 | | - for item in ../core/phpunit.xml ../core/.env ../.gitignore; do |
36 | | - if grep '#ddev-generated' ${item} >/dev/null; then |
37 | | - rm -f ${item} |
38 | | - fi |
39 | | - done |
40 | | - - rm -rf ../test_output |
| 1 | +# Details about the install.yaml file are at https://ddev.readthedocs.io/en/latest/users/extend/additional-services/#sections-and-features-of-ddev-get-add-on-installyaml |
| 2 | + |
| 3 | +name: ddev-drupal-core-dev |
| 4 | + |
| 5 | +project_files: |
| 6 | + - config.ddev-drupal-core-dev.yaml |
| 7 | + - docker-compose.core-dev-selenium.yaml |
| 8 | + - core-dev/phpunit-firefox.xml |
| 9 | + - core-dev/phpunit-chrome.xml |
| 10 | + - commands/web/drupal |
| 11 | + - commands/web/drush |
| 12 | + - commands/web/phpunit |
| 13 | + - commands/web/nightwatch |
| 14 | + - core-dev/install_drush.sh |
| 15 | + - core-dev/gitignore |
| 16 | + - core-dev/.env |
| 17 | + - core-dev/src/Command/AdminLoginCommand.php |
| 18 | + - core-dev/src/Command/BootCommand.php |
| 19 | + - core-dev/src/Command/CacheCommand.php |
| 20 | + - core-dev/src/Command/TestCommand.php |
| 21 | + - core-dev/src/Command/TestBrowserCommand.php |
| 22 | + - core-dev/src/Command/UninstallCommand.php |
| 23 | + |
| 24 | +post_install_actions: |
| 25 | + - cp core-dev/phpunit-chrome.xml ../core/phpunit.xml |
| 26 | + - perl -pi -e "s|DRUPAL_CORE_DDEV_URL|$DDEV_PRIMARY_URL|g" ../core/phpunit.xml |
| 27 | + - cp core-dev/.env ../core/.env |
| 28 | + - cp core-dev/gitignore ../.gitignore |
| 29 | + - mkdir -p ../test_output |
| 30 | + - chmod +w ../test_output |
| 31 | + - cd ../core && ddev yarn |
| 32 | + |
| 33 | +removal_actions: |
| 34 | + - | |
| 35 | + for item in ../core/phpunit.xml ../core/.env ../.gitignore; do |
| 36 | + if grep '#ddev-generated' ${item} >/dev/null; then |
| 37 | + rm -f ${item} |
| 38 | + fi |
| 39 | + done |
| 40 | + - rm -rf ../test_output |
0 commit comments