relocate publishing of .mac.zip artifact from layoutAll to not keep the one in IDEA based product where there is a .sit.

This commit is contained in:
Vladimir.Orlov
2015-02-10 13:42:01 +03:00
parent eb6a2e269b
commit 3db89f259c
+4 -1
View File
@@ -85,6 +85,8 @@ target('default': 'The default target') {
system_selector: "IdeaIC${p("component.version.major")}",
tools_jar: true],
home, null, paths, true)
String macZip = "$paths.artifacts/idea${args.buildNumber}.mac.zip"
notifyArtifactBuilt(macZip)
}
target('build-dist-jars' : 'Target to build jars from locally compiled classes') {
@@ -99,6 +101,8 @@ target('build-dist-jars' : 'Target to build jars from locally compiled classes')
system_selector: "IdeaIC${p("component.version.major")}",
tools_jar: true],
home, null, paths)
String macZip = "$paths.artifacts/idea${args.buildNumber}.mac.zip"
notifyArtifactBuilt(macZip)
}
private void indexSearchableOptions() {
@@ -152,7 +156,6 @@ def layoutAll(Map args, String home, String out, Paths _paths = null, buildJps =
String macZip = "$paths.artifacts/idea${args.buildNumber}.mac.zip"
buildMacZip(macAppRoot, macZip, [paths.distAll], paths.distMac)
notifyArtifactBuilt(macZip)
buildTarGz("idea-${args.buildNumber}", "$paths.artifacts/idea${args.buildNumber}.tar", [paths.distAll, paths.distUnix])
}