Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
  • 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
  • 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

Target

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
Select Git revision
  • 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
  • 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

Commits on Source 3

......@@ -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;
......