Rebuilding preview: 685ecab540796cecc4b9a66b (mr160)685ecab655f0c6471ce0c6fe# sh -c mkdir -p $(dirname /var/lib/tugboat)685ecab655f0c6471ce0c6fe# git clone git@git.drupal.org:project/recurring_events.git /var/lib/tugboatCloning into '/var/lib/tugboat'...
Warning: Permanently added 'git.drupal.org,44.230.112.158' (ECDSA) to the list of known hosts.
685ecab655f0c6471ce0c6fe# bash -c git -C /var/lib/tugboat remote show origin && git -C /var/lib/tugboat remote set-url origin git@git.drupal.org:project/recurring_events.git || git -C /var/lib/tugboat remote add origin git@git.drupal.org:project/recurring_events.git* remote origin
  Fetch URL: git@git.drupal.org:project/recurring_events.git
  Push  URL: git@git.drupal.org:project/recurring_events.git
  HEAD branch: 2.0.x
  Remote branches:
    2.0.x                tracked
    3.0.x                tracked
    3228781-24hour-dates tracked
    8.x-1.x              tracked
  Local branch configured for 'git pull':
    2.0.x merges with remote 2.0.x
  Local ref configured for 'git push':
    2.0.x pushes to 2.0.x (up to date)
685ecab655f0c6471ce0c6fe# git -C /var/lib/tugboat fetch --no-recurse-submodules origin 2.0.xFrom git.drupal.org:project/recurring_events
 * branch            2.0.x      -> FETCH_HEAD
685ecab655f0c6471ce0c6fe# git -C /var/lib/tugboat checkout origin/2.0.xNote: switching to 'origin/2.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 082286e Issue #3522423 by ckng: ArgumentCountError EventInstanceRevisionRevertTranslationForm
685ecab655f0c6471ce0c6fe# git -C /var/lib/tugboat pull --no-edit --rebase=false git@git.drupal.org:issue/recurring_events-3532699.git 3532699-revisionFrom git.drupal.org:issue/recurring_events-3532699
 * branch            3532699-revision -> FETCH_HEAD
Updating 082286e..db770b6
Fast-forward
 ...recurring_events.eventinstance_type.default.yml |  1 +
 .../recurring_events.eventseries_type.default.yml  |  1 +
 config/schema/eventinstance_type.schema.yml        |  3 +++
 config/schema/eventseries_type.schema.yml          |  3 +++
 src/Entity/EventInstanceType.php                   | 28 +++++++++++++++++++++-
 src/Entity/EventSeriesType.php                     | 28 +++++++++++++++++++++-
 src/Form/EventInstanceTypeForm.php                 | 23 ++++++++++++++++++
 src/Form/EventSeriesTypeForm.php                   | 23 ++++++++++++++++++
 8 files changed, 108 insertions(+), 2 deletions(-)
Running INIT commandsRunning UPDATE commands685ecab655f0c6471ce0c6fe# /bin/sh -c set -eux
# Check out a branch using the unique Tugboat ID for this repository, to
# ensure we don't clobber an existing branch.
git checkout -b $TUGBOAT_REPO_ID
# Composer is hungry. You need a Tugboat project with a pretty sizeable
# chunk of memory.
export COMPOSER_MEMORY_LIMIT=-1
# 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 configure the Drupal project to use the checkout of the module as a
# Composer package repository.
composer config repositories.tugboat vcs $TUGBOAT_ROOT
# Now we can require this module, specifing the branch name we created
# above that uses the $TUGBOAT_REPO_ID environment variable.
composer require drupal/recurring_events:dev-$TUGBOAT_REPO_ID
# 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
# 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 recurring_events
+ git checkout -b 614cfdd3d7000a51d549c49e
Switched to a new branch '614cfdd3d7000a51d549c49e'
+ export COMPOSER_MEMORY_LIMIT=-1
+ cd /var/www/drupal
+ composer config repositories.tugboat vcs /var/lib/tugboat
+ composer require drupal/recurring_events:dev-614cfdd3d7000a51d549c49e
./composer.json has been updated
Running composer update drupal/recurring_events
Loading composer repositories with package information
                                                      Updating dependencies
Lock file operations: 2 installs, 0 updates, 0 removals
  - Locking drupal/field_inheritance (2.0.0)
  - Locking drupal/recurring_events (dev-614cfdd3d7000a51d549c49e db770b6)
Writing lock file
Installing dependencies from lock file (including require-dev)
Package operations: 2 installs, 0 updates, 0 removals
  - Downloading drupal/field_inheritance (2.0.0)
  - Syncing drupal/recurring_events (dev-614cfdd3d7000a51d549c49e db770b6) into cache
 0/1 [>---------------------------]   0%
 1/1 [============================] 100%
  - Installing drupal/field_inheritance (2.0.0): Extracting archive
  - Installing drupal/recurring_events (dev-614cfdd3d7000a51d549c49e db770b6): Cloning db770b68a3 from cache
 0/1 [>---------------------------]   0%
 1/1 [============================] 100%
Package container-interop/container-interop is abandoned, you should avoid using it. Use psr/container instead.
Package doctrine/reflection is abandoned, you should avoid using it. Use roave/better-reflection instead.
Package phpunit/php-token-stream is abandoned, you should avoid using it. No replacement was suggested.
Package sebastian/resource-operations is abandoned, you should avoid using it. No replacement was suggested.
Generating autoload files
63 packages you are using are looking for funding.
Use the `composer fund` command to find out more!
+ vendor/bin/drush --yes --db-url=mysql://tugboat:tugboat@mysql:3306/tugboat --site-name=Live preview for 3532699-revision --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] Cron run completed.
 [notice] Performed install task: install_finished
 [success] Installation complete.
+ 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 recurring_events
The following module(s) will be enabled: recurring_events, datetime_range, field_inheritance

 // Do you want to continue?: yes.                                              


In ModuleInstaller.php line 91:
                                                                               
  Unable to install modules: module 'recurring_events' is incompatible with t  
  his version of Drupal core.                                                  
                                                                               

Command Failed (Tugboat Error 1064): Exit code: 1; Command: set -eux
# Check out a branch using the unique Tugboat ID for this repository, to
# ensure we don't clobber an existing branch.
git checkout -b $TUGBOAT_REPO_ID
# Composer is hungry. You need a Tugboat project with a pretty sizeable
# chunk of memory.
export COMPOSER_MEMORY_LIMIT=-1
# 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 configure the Drupal project to use the checkout of the module as a
# Composer package repository.
composer config repositories.tugboat vcs $TUGBOAT_ROOT
# Now we can require this module, specifing the branch name we created
# above that uses the $TUGBOAT_REPO_ID environment variable.
composer require drupal/recurring_events:dev-$TUGBOAT_REPO_ID
# 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
# 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 recurring_events
685ecab540796cecc4b9a66b (3532699-revision) is suspended