-
Notifications
You must be signed in to change notification settings - Fork 1
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
Test recipes #92
Test recipes #92
Conversation
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.
Just making it clear in case anything is confusing.
@@ -38,3 +38,6 @@ drush-backups | |||
.phpunit.result.cache | |||
*.sql | |||
*.zip | |||
|
|||
# Recipes | |||
web/recipes/contrib |
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.
I already added web/recipes
in feature/recipes
.
volumes: | ||
${{ github.workspace }}:/app | ||
run: | | ||
cd web && php -d memory_limit=512M core/scripts/drupal install recipes/contrib/frees-auce-recipes/ce |
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.
Change to drush method.
@@ -0,0 +1,34 @@ | |||
name: Recipe Test |
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 is good for now, but FYI once everything is working we will replace the test that uses drush si minimal --existing-config -y
@@ -113,7 +111,7 @@ | |||
"web/modules/custom/{$name}": ["type:drupal-custom-module"], | |||
"web/profiles/contrib/{$name}": ["type:drupal-profile"], | |||
"web/profiles/custom/{$name}": ["type:drupal-custom-profile"], | |||
"web/recipes/{$vendor}{$name}": ["type:drupal-recipe"], | |||
"web/recipes/contrib/{$vendor}{$name}": ["type:drupal-recipe"], |
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.
Note that i changed this to just be {$vendor}
@@ -97,8 +97,6 @@ | |||
"[web-root]/sites/development.services.yml": false, | |||
"[web-root]/sites/example.settings.local.php": false, | |||
"[web-root]/sites/example.sites.php": false, | |||
"[web-root]/sites/default/default.services.yml": false, | |||
"[web-root]/sites/default/default.settings.php": false, |
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.
Please don't add these back. Not needed with drush.
@@ -0,0 +1,13 @@ | |||
#!/bin/bash |
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.
I changed this in feature/recipes
to be scratch-from-recipes-wip
.
Description
Please describe your changes in detail according to the information below.