Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupalci_testbot
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
drupalci_testbot
Compare revisions
dev to dev
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
project/drupalci_testbot
Select target project
No results found
dev
Select Git revision
Branches
2562211-reporting-times-experiment
2837112-add-phpunit-assessment-plugin
2837112-add-phpunit-step
2843549-phpinfo-artifact
2852997-factory-pattern
2859385-update-composerjson
2865234-csslint-core
2866840-use-stylelint
2880443-testing-cleanup
2901677-project-build-yml
2947470-upgrade-phpunit
2953924-report-bad-config
2955089-command-tests
2955706-add-template-drupalciyml
2960518-run_tests-terminate-fail
2961531-add-container-host-artifacts
2985124-allow-db-diff
2985143-mssql-server-suppor
3005743-core-reinstall-on-composer-lock
3007777-exclude-phars-from-phpcs
3013813-coder-version
3034806-add-phpstan
3039472-fix-phpstan-xml
3043837-hotfix-phpcs-paths
3072484-update-dependencies-autoload
3099984-fix-core-lockfile
3119432-fix-project-dir-variable
3156948-use-build-container
3194848-fix-platform-reqs
dev
production
Tags
20151021_production
20151029_production
20151104_production
20151112_production
20151119_production
20160118_production
20160311_production
20160315_production
20160316_production
20160328_production
20160404_production
20160630_production
20160701_production
20161219_production
legacy
szeged_poc
v0.1.0
48 results
Swap
Target
issue/drupalci_testbot-3371164
Select target project
project/drupalci_testbot
issue/drupalci_testbot-3180352
issue/drupalci_testbot-3139484
issue/drupalci_testbot-3084348
issue/drupalci_testbot-3054010
issue/drupalci_testbot-2983967
issue/drupalci_testbot-3248706
issue/drupalci_testbot-3254634
issue/drupalci_testbot-3271550
issue/drupalci_testbot-3316016
issue/drupalci_testbot-3323103
issue/drupalci_testbot-3332176
issue/drupalci_testbot-3333051
issue/drupalci_testbot-3334914
issue/drupalci_testbot-3368445
issue/drupalci_testbot-3371164
16 results
dev
Select Git revision
Branches
2562211-reporting-times-experiment
2837112-add-phpunit-assessment-plugin
2837112-add-phpunit-step
2843549-phpinfo-artifact
2852997-factory-pattern
2859385-update-composerjson
2865234-csslint-core
2866840-use-stylelint
2880443-testing-cleanup
2901677-project-build-yml
2947470-upgrade-phpunit
2953924-report-bad-config
2955089-command-tests
2955706-add-template-drupalciyml
2960518-run_tests-terminate-fail
2961531-add-container-host-artifacts
2985124-allow-db-diff
2985143-mssql-server-suppor
3005743-core-reinstall-on-composer-lock
3007777-exclude-phars-from-phpcs
3013813-coder-version
3034806-add-phpstan
3039472-fix-phpstan-xml
3043837-hotfix-phpcs-paths
3072484-update-dependencies-autoload
3099984-fix-core-lockfile
3119432-fix-project-dir-variable
3156948-use-build-container
3194848-fix-platform-reqs
3371164-git-depth
dev
production
Tags
20151021_production
20151029_production
20151104_production
20151112_production
20151119_production
20160118_production
20160311_production
20160315_production
20160316_production
20160328_production
20160404_production
20160630_production
20160701_production
20161219_production
legacy
szeged_poc
v0.1.0
49 results
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source
3
Allow all composer plugins
· 09294548
Sascha Grossenbacher
authored
Aug 10, 2023
and
Tim Hestenes Lehnen
committed
Aug 10, 2023
09294548
Uncomment allow-all plugins configuration change
· ef19500c
Sascha Grossenbacher
authored
Aug 14, 2023
ef19500c
Revert "Uncomment allow-all plugins configuration change"
· 3213ecc0
Tim Hestenes Lehnen
authored
Aug 15, 2023
This reverts commit
ef19500c
3213ecc0
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/DrupalCI/Plugin/BuildTask/BuildStep/CodebaseAssemble/ComposerContrib.php
+3
-0
3 additions, 0 deletions
.../BuildTask/BuildStep/CodebaseAssemble/ComposerContrib.php
with
3 additions
and
0 deletions
src/DrupalCI/Plugin/BuildTask/BuildStep/CodebaseAssemble/ComposerContrib.php
View file @
3213ecc0
...
...
@@ -87,6 +87,9 @@ class ComposerContrib extends BuildTaskBase implements BuildStepInterface, Build
$this
->
io
->
writeln
(
"Adding packages.drupal.org as composer repository"
);
$this
->
execRequiredEnvironmentCommands
(
$cmd
,
'Composer config failure'
);
$cmd
=
"sudo -u www-data /usr/local/bin/composer ${verbose}config allow-plugins true --working-dir ${source_dir}"
;
$this
->
io
->
writeln
(
"Allow all composer plugins"
);
$this
->
execRequiredEnvironmentCommands
(
$cmd
,
'Composer config failure'
);
$cmd
=
"sudo -u www-data /usr/local/bin/composer ${verbose} require drupal/"
.
$project
.
" "
.
$composer_branch
.
" --prefer-source --prefer-stable${progress} --no-suggest --no-interaction --working-dir "
.
$source_dir
;
...
...
This diff is collapsed.
Click to expand it.