mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-03 07:05:24 +02:00
Add feature and plugin qualifier for N-builds
As suggested on http://wiki.eclipse.org/index.php/Platform-releng-faq
This commit is contained in:
parent
6e9bacb11b
commit
7005a01abc
3 changed files with 8 additions and 0 deletions
|
@ -80,6 +80,10 @@ $incantation .= "-DbaseLocation=${eclipse} ";
|
|||
$incantation .= "-DbuildType=${buildType} ";
|
||||
$incantation .= "-DbuildId=${buildId} ";
|
||||
$incantation .= "-DmapVersionTag=${tag} ";
|
||||
if ($buildType == "N") {
|
||||
$incantation .= "-DforceContextQualifier=${buildId} ";
|
||||
|
||||
}
|
||||
|
||||
print("${incantation}\n");
|
||||
|
||||
|
|
|
@ -60,6 +60,9 @@ command += "-DbaseLocation=#{eclipse} "
|
|||
command += "-DbuildType=#{buildType} "
|
||||
command += "-DbuildId=#{buildId} "
|
||||
command += "-DmapVersionTag=#{tag} "
|
||||
if ("#{buildType}" == "N") then
|
||||
command += "-DforceContextQualifier=#{buildId} "
|
||||
end
|
||||
|
||||
puts(command)
|
||||
|
||||
|
|
|
@ -35,6 +35,7 @@ command="$command -DbuildType=${buildType} "
|
|||
command="$command -DbuildId=${buildId} "
|
||||
command="$command -DmapVersionTag=${tag} "
|
||||
command="$command -DdoPublish=true "
|
||||
command="$command -DforceContextQualifier=${buildId} "
|
||||
#command="$command postBuild "
|
||||
|
||||
echo "$command"
|
||||
|
|
Loading…
Add table
Reference in a new issue