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
GitLab 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
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
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
Add support for lenient plugin and composer patches
Jürgen Haas
requested to merge
issue/gitlab_templates-3412308:1.0.x
into
1.0.x
Jan 5, 2024
Overview
34
Commits
23
Pipelines
36
Changes
3
0
0
Merge request reports
Compare
1.0.x
version 19
3338bdb5
Jan 10, 2024
version 18
4d9aff58
Jan 10, 2024
version 17
482f8d1a
Jan 9, 2024
version 16
81c96fd2
Jan 9, 2024
version 15
f44d5d3c
Jan 9, 2024
version 14
945cef8d
Jan 9, 2024
version 13
2ba73293
Jan 9, 2024
version 12
d1e38678
Jan 9, 2024
version 11
a903e3de
Jan 9, 2024
version 10
38a05c07
Jan 9, 2024
version 9
1d5f7505
Jan 9, 2024
version 8
27fe0ad1
Jan 9, 2024
version 7
39dbf291
Jan 9, 2024
version 6
69b2fd6b
Jan 9, 2024
version 5
e57da7e1
Jan 8, 2024
version 4
8b3d3058
Jan 8, 2024
version 3
5fe18bf2
Jan 8, 2024
version 2
e224989a
Jan 8, 2024
version 1
5924be60
Jan 5, 2024
1.0.x (base)
and
latest version
latest version
3338bdb5
23 commits,
Jan 10, 2024
version 19
3338bdb5
23 commits,
Jan 10, 2024
version 18
4d9aff58
22 commits,
Jan 10, 2024
version 17
482f8d1a
25 commits,
Jan 9, 2024
version 16
81c96fd2
24 commits,
Jan 9, 2024
version 15
f44d5d3c
23 commits,
Jan 9, 2024
version 14
945cef8d
21 commits,
Jan 9, 2024
version 13
2ba73293
20 commits,
Jan 9, 2024
version 12
d1e38678
19 commits,
Jan 9, 2024
version 11
a903e3de
18 commits,
Jan 9, 2024
version 10
38a05c07
17 commits,
Jan 9, 2024
version 9
1d5f7505
16 commits,
Jan 9, 2024
version 8
27fe0ad1
15 commits,
Jan 9, 2024
version 7
39dbf291
14 commits,
Jan 9, 2024
version 6
69b2fd6b
13 commits,
Jan 9, 2024
version 5
e57da7e1
6 commits,
Jan 8, 2024
version 4
8b3d3058
5 commits,
Jan 8, 2024
version 3
5fe18bf2
5 commits,
Jan 8, 2024
version 2
e224989a
4 commits,
Jan 8, 2024
version 1
5924be60
3 commits,
Jan 5, 2024
3 files
+
66
−
6
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
includes/include.drupalci.main.yml
+
9
−
0
View file @ 3338bdb5
Edit in single-file editor
Open in Web IDE
Show comments on this file
Show full file
@@ -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