Skip to content
This repository has been archived by the owner on Oct 26, 2022. It is now read-only.

Refs #63: Adds drupal-check to the provisioning. #64

Merged
merged 2 commits into from
Jul 11, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions conf/vagrant/provisioning/drupal8-skeleton.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
- { role: https }
- { role: solr }
- { role: drush }
- { role: drupal-check }
- { role: gulp }
- { role: leanbit.nvm,
nvm_user: "vagrant",
Expand Down
15 changes: 15 additions & 0 deletions conf/vagrant/provisioning/roles/drupal-check/tasks/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---

- name: Drupal Check | Install drupal-check
get_url:
url: https://github.com/mglaman/drupal-check/releases/download/1.0.9/drupal-check.phar
dest: /home/vagrant/bin/drupal-check
mode: '0700'
timeout: 1800
tags: drupal-check

# Note: phing and drupal-check have mutually exclusive requirements.
# It'd be better to add drupal-check as a dependency of the drupal project
# rather than as part of the virtual environment, but this will have to do for
# now. Also note, drupal-check is added as part of the-build so it is available
# to CircleCI.