Building preview: 68e026e131904a6d498b6875 (mr144)68e026e21841398a9ea83df7# sh -c mkdir -p $(dirname /var/lib/tugboat)68e026e21841398a9ea83df7# git clone git@git.drupal.org:project/linkit.git /var/lib/tugboatCloning into '/var/lib/tugboat'...
Warning: Permanently added 'git.drupal.org' (ED25519) to the list of known hosts.
68e026e21841398a9ea83df7# bash -c git -C /var/lib/tugboat remote show origin && git -C /var/lib/tugboat remote set-url origin git@git.drupal.org:project/linkit.git || git -C /var/lib/tugboat remote add origin git@git.drupal.org:project/linkit.git* remote origin
Fetch URL: git@git.drupal.org:project/linkit.git
Push URL: git@git.drupal.org:project/linkit.git
HEAD branch: 7.x
Remote branches:
6.0.x tracked
6.1.x tracked
6.x-1.x tracked
7.1.x tracked
7.x tracked
7.x-1.x tracked
7.x-2.x tracked
7.x-3.x tracked
8.x-4.x tracked
8.x-5.x tracked
narrow-is-collapsed tracked
Local branch configured for 'git pull':
7.x merges with remote 7.x
Local ref configured for 'git push':
7.x pushes to 7.x (up to date)
68e026e21841398a9ea83df7# git -C /var/lib/tugboat fetch --no-recurse-submodules origin 7.xFrom git.drupal.org:project/linkit
* branch 7.x -> FETCH_HEAD
68e026e21841398a9ea83df7# git -C /var/lib/tugboat checkout origin/7.xNote: switching to 'origin/7.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 895bbbf Resolve #3540176 "Update or remove"
68e026e21841398a9ea83df7# git -C /var/lib/tugboat pull --no-edit --rebase=false git@git.drupal.org:issue/linkit-3550187.git 3550187-linkit-dialog-listFrom git.drupal.org:issue/linkit-3550187
* branch 3550187-linkit-dialog-list -> FETCH_HEAD
Updating 895bbbf..c346cf9
Fast-forward
css/linkit.autocomplete.css | 4 ++++
1 file changed, 4 insertions(+)
Running INIT commandsRunning UPDATE commands68e026e21841398a9ea83df7# /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/linkit: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 linkit
+ git checkout -b 640a205c9a0990c2c0b0f29e
Switched to a new branch '640a205c9a0990c2c0b0f29e'
+ export COMPOSER_MEMORY_LIMIT=-1
+ cd /var/www/drupal
+ composer config repositories.tugboat vcs /var/lib/tugboat
+ composer require drupal/linkit:dev-640a205c9a0990c2c0b0f29e
./composer.json has been updated
Running composer update drupal/linkit
Loading composer repositories with package information
Updating dependencies
Lock file operations: 1 install, 0 updates, 0 removals
- Locking drupal/linkit (dev-640a205c9a0990c2c0b0f29e c346cf9)
Writing lock file
Installing dependencies from lock file (including require-dev)
Package operations: 1 install, 0 updates, 0 removals
- Installing drupal/linkit (dev-640a205c9a0990c2c0b0f29e c346cf9): Cloning c346cf9c62
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 --db-url=mysql://tugboat:tugboat@mysql:3306/tugboat --site-name=Live preview for 3550187-linkit-dialog-list --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.
+ 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 linkit
[success] Successfully enabled: linkit
Running BUILD commands68e026e21841398a9ea83df7# /bin/sh -c set -eux
# Delete and re-check out this branch in case this is built from a Base Preview.
git branch -D $TUGBOAT_REPO_ID && git checkout -b $TUGBOAT_REPO_ID || true
export COMPOSER_MEMORY_LIMIT=-1
cd $DRUPAL_COMPOSER_ROOT
composer install --optimize-autoloader
# Update this module, including all dependencies.
composer update drupal/linkit --with-all-dependencies
vendor/bin/drush --yes updb
vendor/bin/drush cache:rebuild
+ git branch -D 640a205c9a0990c2c0b0f29e
error: Cannot delete branch '640a205c9a0990c2c0b0f29e' checked out at '/var/lib/tugboat'
+ true
+ export COMPOSER_MEMORY_LIMIT=-1
+ 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/linkit --with-all-dependencies
Loading composer repositories with package information
Updating dependencies
Lock file operations: 0 installs, 22 updates, 0 removals
- Upgrading composer/semver (3.4.3 => 3.4.4)
- Upgrading mck89/peast (v1.17.0 => v1.17.2)
- Upgrading symfony/console (v6.4.22 => v6.4.26)
- Upgrading symfony/dependency-injection (v6.4.22 => v6.4.26)
- Upgrading symfony/error-handler (v6.4.20 => v6.4.26)
- Upgrading symfony/event-dispatcher (v6.4.13 => v6.4.25)
- Upgrading symfony/filesystem (v6.4.13 => v6.4.24)
- Upgrading symfony/finder (v6.4.17 => v6.4.24)
- Upgrading symfony/http-foundation (v6.4.21 => v6.4.26)
- Upgrading symfony/http-kernel (v6.4.21 => v6.4.26)
- Upgrading symfony/mailer (v6.4.21 => v6.4.26)
- Upgrading symfony/mime (v6.4.21 => v6.4.26)
- Upgrading symfony/polyfill-php81 (v1.32.0 => v1.33.0)
- Upgrading symfony/process (v6.4.20 => v6.4.26)
- Upgrading symfony/psr-http-message-bridge (v6.4.13 => v6.4.24)
- Upgrading symfony/routing (v6.4.18 => v6.4.26)
- Upgrading symfony/serializer (v6.4.21 => v6.4.26)
- Upgrading symfony/string (v6.4.21 => v6.4.26)
- Upgrading symfony/validator (v6.4.21 => v6.4.26)
- Upgrading symfony/var-dumper (v6.4.21 => v6.4.26)
- Upgrading symfony/var-exporter (v6.4.22 => v6.4.26)
- Upgrading symfony/yaml (v6.4.21 => v6.4.26)
Writing lock file
Installing dependencies from lock file (including require-dev)
Package operations: 0 installs, 22 updates, 0 removals
- Downloading symfony/string (v6.4.26)
- Downloading symfony/console (v6.4.26)
- Downloading symfony/filesystem (v6.4.24)
- Downloading composer/semver (3.4.4)
- Downloading symfony/yaml (v6.4.26)
- Downloading symfony/var-exporter (v6.4.26)
- Downloading symfony/var-dumper (v6.4.26)
- Downloading symfony/validator (v6.4.26)
- Downloading symfony/serializer (v6.4.26)
- Downloading symfony/routing (v6.4.26)
- Downloading symfony/http-foundation (v6.4.26)
- Downloading symfony/psr-http-message-bridge (v6.4.24)
- Downloading symfony/process (v6.4.26)
- Downloading symfony/mime (v6.4.26)
- Downloading symfony/event-dispatcher (v6.4.25)
- Downloading symfony/mailer (v6.4.26)
- Downloading symfony/error-handler (v6.4.26)
- Downloading symfony/http-kernel (v6.4.26)
- Downloading symfony/finder (v6.4.24)
- Downloading symfony/dependency-injection (v6.4.26)
- Downloading mck89/peast (v1.17.2)
0/21 [>---------------------------] 0%
13/21 [=================>----------] 61%
21/21 [============================] 100%
- Upgrading symfony/string (v6.4.21 => v6.4.26): Extracting archive
- Upgrading symfony/console (v6.4.22 => v6.4.26): Extracting archive
- Upgrading symfony/filesystem (v6.4.13 => v6.4.24): Extracting archive
- Upgrading composer/semver (3.4.3 => 3.4.4): Extracting archive
- Upgrading symfony/yaml (v6.4.21 => v6.4.26): Extracting archive
- Upgrading symfony/var-exporter (v6.4.22 => v6.4.26): Extracting archive
- Upgrading symfony/var-dumper (v6.4.21 => v6.4.26): Extracting archive
- Upgrading symfony/validator (v6.4.21 => v6.4.26): Extracting archive
- Upgrading symfony/serializer (v6.4.21 => v6.4.26): Extracting archive
- Upgrading symfony/routing (v6.4.18 => v6.4.26): Extracting archive
- Upgrading symfony/http-foundation (v6.4.21 => v6.4.26): Extracting archive
- Upgrading symfony/psr-http-message-bridge (v6.4.13 => v6.4.24): Extracting archive
- Upgrading symfony/process (v6.4.20 => v6.4.26): Extracting archive
- Upgrading symfony/mime (v6.4.21 => v6.4.26): Extracting archive
- Upgrading symfony/event-dispatcher (v6.4.13 => v6.4.25): Extracting archive
- Upgrading symfony/mailer (v6.4.21 => v6.4.26): Extracting archive
- Upgrading symfony/error-handler (v6.4.20 => v6.4.26): Extracting archive
- Upgrading symfony/http-kernel (v6.4.21 => v6.4.26): Extracting archive
- Upgrading symfony/finder (v6.4.17 => v6.4.24): Extracting archive
- Upgrading symfony/dependency-injection (v6.4.22 => v6.4.26): Extracting archive
- Upgrading mck89/peast (v1.17.0 => v1.17.2): Extracting archive
- Upgrading symfony/polyfill-php81 (v1.32.0 => v1.33.0): Extracting archive
0/22 [>---------------------------] 0%
10/22 [============>---------------] 45%
19/22 [========================>---] 86%
22/22 [============================] 100%
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 68e026e131904a6d498b6875 (3550187-linkit-dialog-list)68e026e131904a6d498b6875 (3550187-linkit-dialog-list) is ready