Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Testing something new #11

Open
wants to merge 17 commits into
base: test/php7.3image
Choose a base branch
from
24 changes: 5 additions & 19 deletions .probo.yaml
Original file line number Diff line number Diff line change
@@ -1,23 +1,9 @@
image: proboci/ubuntu:18.04-php7.3
steps:
- name: Download Drupal 8 Core latest.
- name: Setting up test html.
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
- 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
mkdir /src/build
echo "hello world" > /src/build/index.html
- name: StaticApp Test..
plugin: StaticApp