Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
drupal
Merge requests
!2279
Issue
#3280730
: Add Tugboat configuration to core
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
Issue
#3280730
: Add Tugboat configuration to core
issue/drupal-3280730:3280730-add-tugboat-configuration
into
11.x
Overview
0
Commits
1
Pipelines
5
Changes
1
Open
Juampy NR
requested to merge
issue/drupal-3280730:3280730-add-tugboat-configuration
into
11.x
2 years ago
Overview
0
Commits
1
Pipelines
5
Changes
1
Expand
0
0
Merge request reports
Compare
11.x
version 16
f2706f80
9 months ago
version 15
f2706f80
9 months ago
version 14
f2706f80
10 months ago
version 13
f2706f80
10 months ago
version 12
1bb426de
10 months ago
version 11
4bb7bdeb
10 months ago
version 10
202144b3
2 years ago
version 9
ff5c24c8
2 years ago
version 8
12650b39
2 years ago
version 7
12650b39
2 years ago
version 6
53ec10bd
2 years ago
version 5
ba7bbbc3
2 years ago
version 4
ba7bbbc3
2 years ago
version 3
2282a2dd
2 years ago
version 2
2282a2dd
2 years ago
version 1
2282a2dd
2 years ago
11.x (HEAD)
and
latest version
latest version
70d8b187
1 commit,
9 months ago
version 16
f2706f80
1 commit,
9 months ago
version 15
f2706f80
1 commit,
9 months ago
version 14
f2706f80
1 commit,
10 months ago
version 13
f2706f80
3661 commits,
10 months ago
version 12
1bb426de
3661 commits,
10 months ago
version 11
4bb7bdeb
3667 commits,
10 months ago
version 10
202144b3
6 commits,
2 years ago
version 9
ff5c24c8
5 commits,
2 years ago
version 8
12650b39
4 commits,
2 years ago
version 7
12650b39
4 commits,
2 years ago
version 6
53ec10bd
3 commits,
2 years ago
version 5
ba7bbbc3
2 commits,
2 years ago
version 4
ba7bbbc3
2 commits,
2 years ago
version 3
2282a2dd
1 commit,
2 years ago
version 2
2282a2dd
1 commit,
2 years ago
version 1
2282a2dd
1 commit,
2 years ago
1 file
+
29
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
.tugboat/config.yml
0 → 100644
+
29
−
0
Options
services
:
php
:
image
:
tugboatqa/php:8.3-apache
default
:
true
depends
:
mysql
commands
:
init
:
-
docker-php-ext-install opcache
-
a2enmod headers rewrite
-
ln -snf $TUGBOAT_ROOT $DOCROOT
-
ln -snf "${TUGBOAT_ROOT}/vendor/bin/drush" /usr/local/bin/drush
-
echo "memory_limit = 2G" >> /usr/local/etc/php/conf.d/my-php.ini
update
:
-
composer self-update
-
composer install --optimize-autoloader
-
COMPOSER_ROOT_VERSION="${TUGBOAT_GITLAB_TARGET:-$TUGBOAT_PREVIEW}-dev" composer require drush/drush
-
mkdir -p "${DOCROOT}/sites/default/files"
-
chgrp -R www-data "${DOCROOT}/sites/default/files"
-
find "${DOCROOT}/sites/default/files" -type d -exec chmod 2775 {} \;
-
find "${DOCROOT}/sites/default/files" -type f -exec chmod 0664 {} \;
-
drush --yes --db-url=mysql://tugboat:tugboat@mysql:3306/tugboat --account-name=admin --account-pass=admin site:install standard
build
:
-
composer self-update
-
composer install --optimize-autoloader
-
COMPOSER_ROOT_VERSION="${TUGBOAT_GITLAB_TARGET:-$TUGBOAT_PREVIEW}-dev" composer require drush/drush
-
drush updatedb -y
-
drush cache:rebuild
mysql
:
image
:
tugboatqa/mariadb:10
Loading