Skip to content
Snippets Groups Projects
Commit d180df0e authored by Christian Kuhn's avatar Christian Kuhn Committed by Anja Leichsenring
Browse files

Revert "[TASK] Remove COMPOSER_ROOT_VERSION from bamboo testing"

This reverts commit 4036d2ec.

The solution does not work out for not yet released
major versions like 10.*.

Reverts: #87170
Resolves: #87170
Releases: master
Change-Id: Ibb827acc97e48e5e44e4b8aec77501517afc762e
Reviewed-on: https://review.typo3.org/59337


Tested-by: default avatarTYPO3com <no-reply@typo3.com>
Reviewed-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
Tested-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
Reviewed-by: default avatarAnja Leichsenring <aleichsenring@ab-softlab.de>
Tested-by: default avatarAnja Leichsenring <aleichsenring@ab-softlab.de>
parent 63db2452
Branches
Tags
No related merge requests found
......@@ -45,6 +45,8 @@ abstract public class AbstractCoreSpec {
protected static String projectName = "TYPO3 Core";
protected static String projectKey = "CORE";
protected String composerRootVersionEnvironment = "COMPOSER_ROOT_VERSION=10.0.0";
protected String testingFrameworkBuildPath = "vendor/typo3/testing-framework/Resources/Core/Build/";
/**
......@@ -176,6 +178,7 @@ abstract public class AbstractCoreSpec {
this.getScriptTaskComposer(requirementIdentifier) +
"composer validate"
)
.environmentVariables(this.composerRootVersionEnvironment)
)
.requirements(
this.getRequirementDocker10()
......@@ -1369,7 +1372,8 @@ abstract public class AbstractCoreSpec {
this.getScriptTaskBashInlineBody() +
this.getScriptTaskComposer(requirementIdentifier) +
"composer install --no-progress --no-suggest --no-interaction"
);
)
.environmentVariables(this.composerRootVersionEnvironment);
}
/**
......@@ -1392,7 +1396,8 @@ abstract public class AbstractCoreSpec {
this.getScriptTaskComposer(requirementIdentifier) +
"composer install -n\n" +
"composer update --with-dependencies --no-progress -n"
);
)
.environmentVariables(this.composerRootVersionEnvironment);
}
/**
......@@ -1415,7 +1420,8 @@ abstract public class AbstractCoreSpec {
this.getScriptTaskComposer(requirementIdentifier) +
"composer install -n\n" +
"composer update --prefer-lowest --no-progress -n"
);
)
.environmentVariables(this.composerRootVersionEnvironment);
}
/**
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment