Skip to content

Commit

Permalink
fixed Community Dist build.
Browse files Browse the repository at this point in the history
  • Loading branch information
vorlovjb committed Jun 23, 2015
1 parent 8631db5 commit 4d01112
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/scripts/dist.gant
Expand Up @@ -57,7 +57,6 @@ setProperty("maySkipAndroidPlugin", true)

target(compile: "Compile project") {
loadProject()
bundledJDKs()
projectBuilder.stage("Cleaning up sandbox folder")
forceDelete(paths.sandbox)

Expand All @@ -67,6 +66,7 @@ target(compile: "Compile project") {

projectBuilder.targetFolder = "$out/classes"
projectBuilder.cleanOutput()
bundledJDKs()
projectBuilder.buildProduction()
projectBuilder.makeModuleTests(findModule("jps-builders"))
}
Expand Down

1 comment on commit 4d01112

@mdaniel
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That is not my experience:

     [java] Build log (info) will be written to /var/folders/gw/84pd2myx7hx3yx8dnr84glp40000gq/T/system/build-log/build.log
     [java] Loaded project /proj/jetbrains/community_fresh: 236 modules, 74 libraries
     [java] ##teamcity[progressMessage 'Cleaning up sandbox folder']
     [java]    [delete] Deleting directory /proj/jetbrains/community_fresh/out
     [java]     [mkdir] Created dir: /proj/jetbrains/community_fresh/out
     [java]     [mkdir] Created dir: /proj/jetbrains/community_fresh/out/dist.win.ce
     [java]     [mkdir] Created dir: /proj/jetbrains/community_fresh/out/dist.all.ce
     [java]     [mkdir] Created dir: /proj/jetbrains/community_fresh/out/dist.unix.ce
     [java]     [mkdir] Created dir: /proj/jetbrains/community_fresh/out/dist.mac.ce
     [java]     [mkdir] Created dir: /proj/jetbrains/community_fresh/out/artifacts
     [java]     [mkdir] Created dir: /proj/jetbrains/community_fresh/out/artifacts/core
     [java]     [mkdir] Created dir: /proj/jetbrains/community_fresh/out/artifacts/jps
     [java] ##teamcity[buildStatisticValue key='Cleaning output time, ms' value='66']
     [java] 'jdk16.mac' is not defined. Defaulting to 'true'
     [java] 'jdk.bundled.win' is not defined. Defaulting to '1.8'
     [java] 'jdk.bundled.linux' is not defined. Defaulting to 'false'
     [java] 'jdk.bundled.mac' is not defined. Defaulting to '1.8'
     [java] 'jdk.custom.mac' is not defined. Defaulting to 'true'
     [java]     [mkdir] Created dir: /proj/jetbrains/community_fresh/out/bundled.win.jdk
     [java]
     [java] BUILD FAILED
     [java] /proj/jetbrains/community_fresh/build/gant.xml:57: : Src must not be a directory. Use nested filesets instead.
     [java]
     [java] Total time: 4 seconds

and I am as up-to-date as github permits:

$ git rev-parse --short=8 HEAD
d2837e6a

For my own understanding, is community disabled on TeamCity? If so, can you just wire this repo up to Travis CI? It seems silly to be having this discussion when JetBrains has a perfectly functional CI server which would surface this error instantly.
screen shot 2015-06-23 at 11 46 25 am

Please sign in to comment.