Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
gitlab_templates
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
gitlab_templates
Merge requests
!101
Add support for lenient plugin and composer patches
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add support for lenient plugin and composer patches
issue/gitlab_templates-3412308:1.0.x
into
1.0.x
Overview
35
Commits
23
Pipelines
36
Changes
3
Merged
Jürgen Haas
requested to merge
issue/gitlab_templates-3412308:1.0.x
into
1.0.x
1 year ago
Overview
34
Commits
23
Pipelines
36
Changes
3
Expand
0
0
Merge request reports
Compare
1.0.x
version 19
3338bdb5
1 year ago
version 18
4d9aff58
1 year ago
version 17
482f8d1a
1 year ago
version 16
81c96fd2
1 year ago
version 15
f44d5d3c
1 year ago
version 14
945cef8d
1 year ago
version 13
2ba73293
1 year ago
version 12
d1e38678
1 year ago
version 11
a903e3de
1 year ago
version 10
38a05c07
1 year ago
version 9
1d5f7505
1 year ago
version 8
27fe0ad1
1 year ago
version 7
39dbf291
1 year ago
version 6
69b2fd6b
1 year ago
version 5
e57da7e1
1 year ago
version 4
8b3d3058
1 year ago
version 3
5fe18bf2
1 year ago
version 2
e224989a
1 year ago
version 1
5924be60
1 year ago
1.0.x (base)
and
latest version
latest version
3338bdb5
23 commits,
1 year ago
version 19
3338bdb5
23 commits,
1 year ago
version 18
4d9aff58
22 commits,
1 year ago
version 17
482f8d1a
25 commits,
1 year ago
version 16
81c96fd2
24 commits,
1 year ago
version 15
f44d5d3c
23 commits,
1 year ago
version 14
945cef8d
21 commits,
1 year ago
version 13
2ba73293
20 commits,
1 year ago
version 12
d1e38678
19 commits,
1 year ago
version 11
a903e3de
18 commits,
1 year ago
version 10
38a05c07
17 commits,
1 year ago
version 9
1d5f7505
16 commits,
1 year ago
version 8
27fe0ad1
15 commits,
1 year ago
version 7
39dbf291
14 commits,
1 year ago
version 6
69b2fd6b
13 commits,
1 year ago
version 5
e57da7e1
6 commits,
1 year ago
version 4
8b3d3058
5 commits,
1 year ago
version 3
5fe18bf2
5 commits,
1 year ago
version 2
e224989a
4 commits,
1 year ago
version 1
5924be60
3 commits,
1 year ago
3 files
+
66
−
6
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
includes/include.drupalci.main.yml
+
9
−
0
Options
@@ -42,6 +42,14 @@
echo -e "\e[0Ksection_end:`date +%s`:show_env_vars\r\e[0K"
fi
.add-composer-drupal-lenient
:
&add-composer-drupal-lenient
# Separately install and configure lenient plugin, if required.
-
|
if [ "$LENIENT_ALLOW_LIST" != "0" ]; then
composer global config --no-plugins allow-plugins.mglaman/composer-drupal-lenient true
composer global require mglaman/composer-drupal-lenient
fi
.simpletest-db
:
&simpletest-db
-
|
[[ $_TARGET_DB_TYPE == "sqlite" ]] && export SIMPLETEST_DB=sqlite://localhost/sites/default/files/db.sqlite
@@ -164,6 +172,7 @@ stages:
-
.
script
:
-
*show-environment-variables
-
*add-composer-drupal-lenient
# Expand the composer.json from the module with defaults to bring the Drupal project.
-
curl -OL https://git.drupalcode.org/$_GITLAB_TEMPLATES_REPO/-/raw/$_GITLAB_TEMPLATES_REF/scripts/expand_composer_json.php
-
php expand_composer_json.php
@@ -497,7+506,7 @@
-
*simpletest-db
# Provide some context on the test run.
-
vendor/bin/drush status
+2
# Remove all spaces from _PHPUNIT_TESTGROUPS for reliable checking and to
# ensure only one string is passed to bin/phpunit or run-tests.sh
-
_PHPUNIT_TESTGROUPS=$(echo $_PHPUNIT_TESTGROUPS | sed -e 's/ //g')
# Execute tests.
Loading