Building preview: 6852bf706decdc0e5ee0fcad (mr9)6852bf70ea496b9baba5ccaf# sh -c mkdir -p $(dirname /var/lib/tugboat)6852bf70ea496b9baba5ccaf# git clone git@git.drupal.org:project/content_reminders.git /var/lib/tugboatCloning into '/var/lib/tugboat'...
Warning: Permanently added 'git.drupal.org' (ED25519) to the list of known hosts.
6852bf70ea496b9baba5ccaf# bash -c git -C /var/lib/tugboat remote show origin && git -C /var/lib/tugboat remote set-url origin git@git.drupal.org:project/content_reminders.git || git -C /var/lib/tugboat remote add origin git@git.drupal.org:project/content_reminders.git* remote origin
  Fetch URL: git@git.drupal.org:project/content_reminders.git
  Push  URL: git@git.drupal.org:project/content_reminders.git
  HEAD branch: 1.0.x
  Remote branch:
    1.0.x tracked
  Local branch configured for 'git pull':
    1.0.x merges with remote 1.0.x
  Local ref configured for 'git push':
    1.0.x pushes to 1.0.x (up to date)
6852bf70ea496b9baba5ccaf# git -C /var/lib/tugboat fetch --no-recurse-submodules origin 1.0.xFrom git.drupal.org:project/content_reminders
 * branch            1.0.x      -> FETCH_HEAD
6852bf70ea496b9baba5ccaf# git -C /var/lib/tugboat checkout origin/1.0.xNote: switching to 'origin/1.0.x'.

You are in 'detached HEAD' state. You can look around, make experimental
changes and commit them, and you can discard any commits you make in this
state without impacting any branches by switching back to a branch.

If you want to create a new branch to retain commits you create, you may
do so (now or later) by using -c with the switch command. Example:

  git switch -c <new-branch-name>

Or undo this operation with:

  git switch -

Turn off this advice by setting config variable advice.detachedHead to false

HEAD is now at be5990b Issue #3516933 by theloneliestmonk, dmundra: Add Gitlab CI
6852bf70ea496b9baba5ccaf# git -C /var/lib/tugboat pull --no-edit --rebase=false git@git.drupal.org:issue/content_reminders-3340396.git 3340396-dont-show-disabledFrom git.drupal.org:issue/content_reminders-3340396
 * branch            3340396-dont-show-disabled -> FETCH_HEAD
Updating be5990b..0400944
Fast-forward
 src/ContentReminderService.php | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)
Running INIT commandsRunning UPDATE commands6852bf70ea496b9baba5ccaf# /bin/sh -c set -eux
# This is an environment variable we added in the Dockerfile that
# provides the path to Drupal composer root (not the web root).
cd $DRUPAL_COMPOSER_ROOT
# We need to change the minimum stability to dev to use the path
composer config minimum-stability dev
# We configure the Drupal project to use the checkout of the module as a
# Composer package repository.
composer config repositories.tugboat path $TUGBOAT_ROOT
# Now we can require this module
composer require drupal/content_reminders
# Install Drupal on the site.
vendor/bin/drush \
  --yes \
  --db-url=mysql://tugboat:tugboat@mysql:3306/tugboat \
  --site-name="Live preview for ${TUGBOAT_PREVIEW_NAME}" \
  --account-pass=admin \
  site:install standard
# Add tugboat URLs to the Drupal trusted host patterns.
echo "\$settings['trusted_host_patterns'] = ['\.tugboatqa\.com\$'];" >> $DOCROOT/sites/default/settings.php
# Set up the files directory permissions.
mkdir -p $DRUPAL_DOCROOT/sites/default/files
chgrp -R www-data $DRUPAL_DOCROOT/sites/default/files
chmod 2775 $DRUPAL_DOCROOT/sites/default/files
chmod -R g+w $DRUPAL_DOCROOT/sites/default/files
# Enable the module.
vendor/bin/drush --yes pm:enable content_reminders
+ cd /var/www/drupal
+ composer config minimum-stability dev
+ composer config repositories.tugboat path /var/lib/tugboat
+ composer require drupal/content_reminders
./composer.json has been updated
Running composer update drupal/content_reminders
Loading composer repositories with package information
Updating dependencies
Lock file operations: 1 install, 0 updates, 0 removals
  - Locking drupal/content_reminders (dev-main)
Writing lock file
Installing dependencies from lock file (including require-dev)
Package operations: 1 install, 0 updates, 0 removals
  - Installing drupal/content_reminders (dev-main): Symlinking from /var/lib/tugboat
Generating autoload files
42 packages you are using are looking for funding.
Use the `composer fund` command to find out more!
No security vulnerability advisories found.
Using version dev-main for drupal/content_reminders
+ vendor/bin/drush --yes --db-url=mysql://tugboat:tugboat@mysql:3306/tugboat --site-name=Live preview for 3340396-dont-show-disabled --account-pass=admin site:install standard
 You are about to:
 * Create a sites/default/settings.php file
 * DROP all tables in your 'tugboat' database.

 // Do you want to continue?: yes.                                              

 [notice] Starting Drupal installation. This takes a while.
 [notice] Performed install task: install_select_language
 [notice] Performed install task: install_select_profile
 [notice] Performed install task: install_load_profile
 [notice] Performed install task: install_verify_requirements
 [notice] Performed install task: install_settings_form
 [notice] Performed install task: install_verify_database_ready
 [notice] Performed install task: install_base_system
 [notice] Performed install task: install_bootstrap_full
 [notice] Performed install task: install_profile_modules
 [notice] Performed install task: install_profile_themes
 [notice] Performed install task: install_install_profile
 [notice] Performed install task: install_configure_form
 [notice] Performed install task: install_finished
 [success] Installation complete.
+ echo $settings['trusted_host_patterns'] = ['\.tugboatqa\.com$'];
+ mkdir -p /var/www/drupal/web/sites/default/files
+ chgrp -R www-data /var/www/drupal/web/sites/default/files
+ chmod 2775 /var/www/drupal/web/sites/default/files
+ chmod -R g+w /var/www/drupal/web/sites/default/files
+ vendor/bin/drush --yes pm:enable content_reminders
 [success] Successfully enabled: content_reminders
Running BUILD commands6852bf70ea496b9baba5ccaf# /bin/sh -c set -eux
cd $DRUPAL_COMPOSER_ROOT
composer install --optimize-autoloader
# Update this module, including all dependencies.
composer update drupal/content_reminders --with-all-dependencies
vendor/bin/drush --yes updb
vendor/bin/drush cache:rebuild
+ cd /var/www/drupal
+ composer install --optimize-autoloader
Installing dependencies from lock file (including require-dev)
Verifying lock file contents can be installed on current platform.
Nothing to install, update or remove
Generating optimized autoload files
42 packages you are using are looking for funding.
Use the `composer fund` command to find out more!
  * Homepage: https://www.drupal.org/project/drupal
  * Support:
    * docs: https://www.drupal.org/docs/user_guide/en/index.html
    * chat: https://www.drupal.org/node/314178
+ composer update drupal/content_reminders --with-all-dependencies
Loading composer repositories with package information
Updating dependencies
Nothing to modify in lock file
Writing lock file
Installing dependencies from lock file (including require-dev)
Nothing to install, update or remove
Generating autoload files
42 packages you are using are looking for funding.
Use the `composer fund` command to find out more!
No security vulnerability advisories found.
+ vendor/bin/drush --yes updb
 [success] No pending updates.
+ vendor/bin/drush cache:rebuild
 [success] Cache rebuild complete.
Committing 6852bf706decdc0e5ee0fcad (3340396-dont-show-disabled)6852bf706decdc0e5ee0fcad (3340396-dont-show-disabled) is ready