diff --git a/.probo.yaml b/.probo.yaml new file mode 100644 index 0000000..5d9daaf --- /dev/null +++ b/.probo.yaml @@ -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