Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
efc5d22
Fixing linting so CI can work.
gregharvey Apr 14, 2023
1cb5a6d
More linting fixes.
gregharvey Apr 14, 2023
7d9463d
Downgrading Ubuntu due to Docker issues with ce-dev and latest.
gregharvey Apr 14, 2023
da0bb08
Making pipefail shell commands use /bin/bash.
gregharvey Apr 14, 2023
c24f6a3
Adding pipefail code to cachetool installer block.
gregharvey Apr 14, 2023
d69de84
Adding executable for drush install checker.
gregharvey Apr 14, 2023
2e9a3f2
Merge branch '1.x' into bug_fixes
gregharvey Apr 19, 2023
92107be
Fixing D7 ctools behaviour to match features handling.
gregharvey Apr 19, 2023
330a126
Merge branch '1.x' into bug_fixes-PR-1.x
gregharvey Apr 19, 2023
eca7316
Merge branch 'bug_fixes' into bug_fixes-PR-1.x
gregharvey Apr 19, 2023
e8a6920
Merge branch '1.x' into bug_fixes
gregharvey Apr 26, 2023
bb65b12
Jinja2 template looking for settings.php using wrong path.
gregharvey Apr 26, 2023
37c305b
Merge branch '1.x' into bug_fixes-PR-1.x
gregharvey Apr 26, 2023
15f8897
Merge branch 'bug_fixes' into bug_fixes-PR-1.x
gregharvey Apr 26, 2023
0b26394
Fixing config_generate for Drupal.
gregharvey May 11, 2023
00331c2
Making host checking more robust.
gregharvey May 11, 2023
f2bbc9e
Merge branch 'bug_fixes' into bug_fixes-PR-1.x
gregharvey May 11, 2023
2bbb925
Removing variable declaration that will break host check.
gregharvey May 11, 2023
287a23f
Merge branch 'bug_fixes' into bug_fixes-PR-1.x
gregharvey May 11, 2023
0f7a89d
Allow us to use deploy_code with a completely custom build and do not…
gregharvey May 11, 2023
2e04af8
Merge branch 'bug_fixes' into bug_fixes-PR-1.x
gregharvey May 11, 2023
f23a77b
Make PHP cachetool install optional.
gregharvey May 12, 2023
afdb3b9
Merge branch '1.x' into bug_fixes-PR-1.x
gregharvey May 12, 2023
9535d24
Merge branch 'bug_fixes' into bug_fixes-PR-1.x
gregharvey May 12, 2023
b955749
Fixing bug introduced by failed_when - need to check for return code …
gregharvey May 17, 2023
fdd74c5
Merge branch '1.x' into bug_fixes-PR-1.x
gregharvey May 17, 2023
9fb9149
Merge branch 'bug_fixes' into bug_fixes-PR-1.x
gregharvey May 17, 2023
a54569c
Moving where opcache clears get called so they can be excluded if nec…
gregharvey May 25, 2023
da2ebfd
Merge branch '1.x' into bug_fixes-PR-1.x
gregharvey May 25, 2023
f3790af
Merge branch 'bug_fixes' into bug_fixes-PR-1.x
gregharvey May 25, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions roles/_meta/deploy-drupal8/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@
name: database_backup
- import_role:
name: config_generate
- import_role:
name: cache_clear/cache_clear-opcache
- import_role:
name: database_apply
- import_role:
name: sanitize/admin_creds
- import_role:
name: live_symlink
- import_role:
name: cache_clear/cache_clear-opcache
- import_role:
name: cache_clear/cache_clear-drupal8
- import_role:
Expand Down
5 changes: 0 additions & 5 deletions roles/database_apply/database_apply-drupal7/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,6 @@
name: "cache_clear/cache_clear-{{ project_type }}"
when: previous_build_number > 0

- name: Clear the opcache.
ansible.builtin.include_role:
name: cache_clear/cache_clear-opcache
when: previous_build_number > 0

- name: Apply Drupal database updates.
ansible.builtin.shell:
cmd: "{{ drush_bin }} -l {{ site.folder }} -y updb"
Expand Down
5 changes: 0 additions & 5 deletions roles/database_apply/database_apply-drupal8/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,6 @@
- previous_build_number > 0
- site.config_import_command != 'deploy'

- name: Clear the opcache.
ansible.builtin.include_role:
name: cache_clear/cache_clear-opcache
when: previous_build_number > 0

- name: Apply Drupal database updates.
ansible.builtin.command:
cmd: "{{ drush_bin }} -l {{ site.folder }} -y updb"
Expand Down