forked from gradle/gradle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
201 lines (163 loc) · 7.01 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
/*
* Copyright 2010 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import org.gradle.build.Install
import org.gradle.build.BuildTypes
import org.gradle.build.TestReportAggregator
defaultTasks 'assemble'
apply plugin: 'java-base'
archivesBaseName = 'gradle'
extensions.buildTypes = new BuildTypes(project)
buildTypes {
sanityCheck "classes", "doc:checkstyleApi", "codeQuality", "docs:check"
// The minimum to be run before check-in
preCommitBuild "doc:checkstyleApi", "docs:check", "codeQuality", "classes", "test"
quickCheck "doc:checkstyleApi", "docs:check", "codeQuality", "classes", "test"
// A full (in-process) test
developerBuild "check"
// Used by the first phase of the build pipeline
quickTest "runtimeTests", "runtimeIntegTests"
// Used for builds to run all tests, but not necessarily on all platforms
fullTest "runtimeTests", "runtimeIntegTests", useIncomingDistributions: true, defaultIntegTestExecuter: "forking"
// Used for builds to test the code on certain platforms
platformTest "runtimeTests", "runtimeIntegTests", useIncomingDistributions: true, defaultIntegTestExecuter: "forking", testAllPlatforms: true
// Tests using the daemon mode
daemonTest "runtimeIntegTests", useIncomingDistributions: true, defaultIntegTestExecuter: "daemon"
// Run the integration tests using the parallel executer
parallelTest "runtimeIntegTests", useIncomingDistributions: true, defaultIntegTestExecuter: "parallel"
// Run the performance tests
performanceTest "performance:integTest", useIncomingDistributions: true
// Run the performance tests
localPerformanceTest "performance:integTest"
// Used for cross version tests on CI
crossVersionTest "runtimeIntegTests", crossVersionTestsOnly: "", testAllVersions: "", useIncomingDistributions: true, defaultIntegTestExecuter: "forking"
// Used to build production distros and smoke test them
packageBuild "verifyIsProductionBuildEnvironment", "clean", "buildDists", "distributions:integTest"
// Used to build production distros and smoke test them
promotionBuild "verifyIsProductionBuildEnvironment", "clean", "docs:check", "buildDists", "distributions:integTest", "uploadArchives"
}
ext {
jvm = org.gradle.internal.jvm.Jvm.current()
javaVersion = JavaVersion.current()
isCiServer = System.getenv().containsKey("TEAMCITY_VERSION")
isWindows = org.gradle.internal.os.OperatingSystem.current().windows
if (project.hasProperty("maxParallelForks")) {
project.maxParallelForks = Integer.valueOf(project.maxParallelForks, 10)
} else {
ext.maxParallelForks = Math.max(2, (int) (Runtime.runtime.availableProcessors() / 2))
}
if (project.hasProperty("useIncomingDistributions")) {
project.useIncomingDistributions = true
} else {
ext.useIncomingDistributions = false
}
internalProjects = subprojects.findAll { it.name.startsWith("internal") || it.name in ["integTest", "distributions"] }
groovyProjects = subprojects
publicGroovyProjects = groovyProjects - internalProjects
publishedProjects = [project(':core'), project(':toolingApi'), project(':wrapper'), project(':baseServices'), project(':messaging')]
pluginProjects = [
'plugins', 'codeQuality', 'jetty', 'antlr', 'wrapper', 'osgi', 'maven',
'ide', 'announce', 'scala', 'sonar', 'signing', 'cpp', 'ear', 'javascript', 'buildComparison',
'diagnostics', 'reporting', 'publish', 'ivy', 'jacoco', 'buildInit', 'languageJvm', 'languageBase'
].collect {
project(it)
}
}
apply from: "gradle/buildReceipt.gradle"
apply from: "gradle/incomingDistributions.gradle"
apply from: "gradle/versioning.gradle"
apply from: "gradle/dependencies.gradle"
apply from: "gradle/wrapper.gradle"
apply from: "gradle/idea.gradle"
apply from: "gradle/eclipse.gradle"
apply from: "gradle/classycle.gradle"
apply from: "gradle/noDependencyResolutionDuringConfiguration.gradle"
apply from: "gradle/testGroupings.gradle"
allprojects {
group = 'org.gradle'
repositories {
maven { url 'http://repo.gradle.org/gradle/libs' }
}
}
subprojects {
version = rootProject.version
if (project in groovyProjects) {
apply from: "$rootDir/gradle/groovyProject.gradle"
apply from: "$rootDir/gradle/testWithUnknownOS.gradle"
check.dependsOn ":docs:checkstyleApi"
check.dependsOn "codeQuality"
}
if (project in publishedProjects) {
apply from: "$rootDir/gradle/publish.gradle"
}
apply from: "$rootDir/gradle/codeQuality.gradle"
if (isCiServer) {
reporting.baseDir "$rootProject.reporting.baseDir/${path.replaceFirst(':', '').replaceAll(':', '.')}"
}
}
configurations {
runtime {
visible = false
}
plugins {
visible = false
}
testRuntime {
extendsFrom runtime
extendsFrom plugins
}
}
dependencies {
runtime project(':launcher')
runtime project(':wrapper')
plugins pluginProjects
plugins project(':coreImpl')
}
task verifyIsProductionBuildEnvironment << {
assert javaVersion.java7 : "Must use a Java 7 compatible JVM to perform this build. Current JVM is ${jvm}"
def systemCharset = java.nio.charset.Charset.defaultCharset().name()
assert systemCharset == "UTF-8" : "Platform encoding must be UTF-8. Is currently $systemCharset. Set -Dfile.encoding=UTF-8."
}
task waitForDaemonsToDie {
if (!project.hasProperty("noWaitForDaemonsToDie")) {
if (isWindows && isCiServer) {
gradle.startParameter.taskNames.add(0, it.path)
}
doLast {
def mins = 2
println "I'm waiting for $mins mins so that existing daemons can die with honour. It's a workaround until we fix it properly."
sleep mins * 60 * 1000
}
}
}
task aggregateTestReports(type: TestReportAggregator) {
testReportDir = reporting.file("tests")
testResultsDir = file("${buildDir}/test-results")
projects = subprojects
}
evaluationDependsOn ":distributions"
task install(type: Install) {
description = 'Installs the minimal distribution into directory $gradle_installPath'
group = 'build'
with project(":distributions").binDistImage
installDirPropertyName = 'gradle_installPath'
}
task installAll(type: Install) {
description = 'Installs the full distribution into directory $gradle_installPath'
group = 'build'
with project(":distributions").allDistImage
installDirPropertyName = 'gradle_installPath'
}
apply from: "gradle/intTestImage.gradle"