Skip to content
Open
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
25 changes: 25 additions & 0 deletions .probo.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
image: proboci/ubuntu:18.04-php7.3
steps:
- name: Download Drupal 8 Core latest.
plugin: Script
script: |
composer create-project drupal-composer/drupal-project:8.x-dev /tmp/src --no-interaction
cp -Rf /tmp/src/* /src
cd /src
composer require drupal/devel drush/drush cweagans/composer-patches
composer install
- name: Drupal site install.
plugin: Drupal
clearCaches: false
subDirectory: web
drupalVersion: 8
varnish:
enable: true
- name: Install Drupal site.
plugin: Script
script: |
vendor/drush/drush/drush site-install -y --root=/var/www/html standard --db-url='mysqli://root:strongpassword@localhost/drupal'
- name: Generate login link.
plugin: Script
script: |
vendor/drush/drush/drush uli