-
Notifications
You must be signed in to change notification settings - Fork 2
Opcache: added version and bin to drupal8,9 and localgov tempaltes #98
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
Changes from all commits
5bee26c
e42ebd1
b0dc9d9
34ce84c
cae50ba
79372e7
4fa738c
70954a3
62e753e
710a4e3
6046092
2dc8b59
dd597b8
4f0e659
2dc648c
00a7bae
9f818de
5f19829
09926f4
f68e2a1
9f515f8
8f84e48
8b67d00
083a2bc
e7cad04
c80da39
03c819b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,7 @@ | ||
1.1.22 | ||
Drupal 9 template building. | ||
1.1.23 | ||
Changed credentials_handling to manual, to generate ce-dev and root as user/password instead of a random string. | ||
Using vendor/drush as drush instead of the phar file. | ||
Included lhci_run as role in the deploy step, with one tests for the homepage. | ||
Using full command paths to define pre/post_tasks | ||
Renamed the settings and drush templates inside ansible/web/site/default | ||
Removed the pre_tasks in provision.yml to uninstall nodejs 12. |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,6 +40,8 @@ | |
_env_type: dev | ||
fpm: | ||
_env_type: dev | ||
- opcache: | ||
cachetool_version: 7.1.0 | ||
- xdebug: | ||
cli: true | ||
- lhci: | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,6 +42,7 @@ | |
# Create a list of URLs to test with LHCI | ||
test_urls: | ||
- "https://{{ _domain_name }}" | ||
- cachetool_bin: "/usr/local/bin/cachetool" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This could be There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I tried with it actually, but for some reason the .bin/cachetool.phar is always the latest version of opcache. I don't know who/what installs this phar , maybe it is part of Debian Bullseye? |
||
pre_tasks: | ||
# You can safely remove these steps once you have a working composer.json. | ||
- name: Download composer file. | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,6 +35,10 @@ | |
no_dev: false | ||
working_dir: "{{ deploy_path }}" | ||
apcu_autoloader: false | ||
- drush: | ||
use_vendor: true | ||
- drush_bin: "{{ deploy_path }}/vendor/drush/drush/drush" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is this better as There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. without {{ deploy_path }} we have to play with '../../../vendor........' |
||
- cachetool_bin: "/usr/local/bin/cachetool" | ||
pre_tasks: | ||
# You can safely remove these steps once you have a working composer.json. | ||
- name: Download composer file. | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,6 +40,8 @@ | |
_env_type: dev | ||
fpm: | ||
_env_type: dev | ||
- opcache: | ||
cachetool_version: 7.1.0 | ||
- xdebug: | ||
cli: true | ||
- lhci: | ||
|
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.
How come this change? 🙂
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.
devel branch seems outdated if you compare with 1.x. The feature branch was created from 1.x.
https://github.com/codeenigma/ce-dev/blob/1.x/.github/workflows/ce-dev-publish-docs.yml#L44