Skip to content
This repository was archived by the owner on Feb 25, 2020. It is now read-only.
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
16 changes: 10 additions & 6 deletions .probo.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand Down