diff --git a/.probo.yaml b/.probo.yaml index d4c4e42..3bdb636 100644 --- a/.probo.yaml +++ b/.probo.yaml @@ -1,12 +1,16 @@ +image: proboci/ubuntu-16.04-lamp:php7.1-nightly steps: - name: Update Composer command: '/usr/local/bin/composer self-update' - - name: Install drush-master for d8 - command: 'composer global require drush/drush:8.* ; cd /usr/local/bin ; mv drush drush7 ; ln -s $HOME/.composer/vendor/bin/drush drush' - - name: Run the profile script - command: './$SRC_DIR/.probo-profile-build.sh' - - name: Run install - command: "drush site-install --root=/var/www/html bear --db-url='mysqli://root:strongpassword@localhost/bear'" + - name: Require drush 8.1.15. + command: 'composer global require drush/drush:8.1.15' + - name: Install composer packages with dependencies. + command: 'composer install -d $SRC_DIR' + - name: Probo site setup + plugin: Drupal + configSyncDirectory: config/sync + drupalVersion: 8 + runInstall: bear - name: Set file directory permissions command: 'chown -R www-data:www-data /var/www/html/sites/default/files' - name: Rebuild caches