Mercurial > public > develkit
annotate init20.gradle @ 221:837c9249053f
USASR-2244: Update init20.gradle to pull all changesets from mercurial before attempting to calculate snapshot branch name
author | Christopher Springer <springer@nwoca.org> |
---|---|
date | Thu, 07 Jul 2016 16:17:18 +0100 |
parents | efa545c6dd65 |
children | b3cb5db317a0 |
rev | line source |
---|---|
175 | 1 import groovy.sql.Sql |
215
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
2 import groovy.transform.Sortable |
178 | 3 import groovy.transform.ToString |
215
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
4 import groovy.transform.TupleConstructor |
175 | 5 |
214
0ca4f3c952b7
DEP-11: add depency-lock plugin and a resolver to supply dynamic version based on branch. Cleanup metrics includes
smith@nwoca.org
parents:
211
diff
changeset
|
6 buildscript { |
0ca4f3c952b7
DEP-11: add depency-lock plugin and a resolver to supply dynamic version based on branch. Cleanup metrics includes
smith@nwoca.org
parents:
211
diff
changeset
|
7 repositories { |
0ca4f3c952b7
DEP-11: add depency-lock plugin and a resolver to supply dynamic version based on branch. Cleanup metrics includes
smith@nwoca.org
parents:
211
diff
changeset
|
8 maven { url 'http://repos.ssdt.nwoca.org/artifactory/gradle-plugins' } |
0ca4f3c952b7
DEP-11: add depency-lock plugin and a resolver to supply dynamic version based on branch. Cleanup metrics includes
smith@nwoca.org
parents:
211
diff
changeset
|
9 maven { url 'http://repos.ssdt.nwoca.org/artifactory/ssdt-repo' } |
0ca4f3c952b7
DEP-11: add depency-lock plugin and a resolver to supply dynamic version based on branch. Cleanup metrics includes
smith@nwoca.org
parents:
211
diff
changeset
|
10 } |
0ca4f3c952b7
DEP-11: add depency-lock plugin and a resolver to supply dynamic version based on branch. Cleanup metrics includes
smith@nwoca.org
parents:
211
diff
changeset
|
11 dependencies { |
0ca4f3c952b7
DEP-11: add depency-lock plugin and a resolver to supply dynamic version based on branch. Cleanup metrics includes
smith@nwoca.org
parents:
211
diff
changeset
|
12 classpath 'postgresql:postgresql:9.1-901.jdbc4' |
0ca4f3c952b7
DEP-11: add depency-lock plugin and a resolver to supply dynamic version based on branch. Cleanup metrics includes
smith@nwoca.org
parents:
211
diff
changeset
|
13 classpath 'com.netflix.nebula:gradle-dependency-lock-plugin:4.3.0' |
0ca4f3c952b7
DEP-11: add depency-lock plugin and a resolver to supply dynamic version based on branch. Cleanup metrics includes
smith@nwoca.org
parents:
211
diff
changeset
|
14 } |
0ca4f3c952b7
DEP-11: add depency-lock plugin and a resolver to supply dynamic version based on branch. Cleanup metrics includes
smith@nwoca.org
parents:
211
diff
changeset
|
15 } |
0ca4f3c952b7
DEP-11: add depency-lock plugin and a resolver to supply dynamic version based on branch. Cleanup metrics includes
smith@nwoca.org
parents:
211
diff
changeset
|
16 |
175 | 17 final GradleVersion gradleCurrent = GradleVersion.current() |
18 final GradleVersion gradleV20 = GradleVersion.version('2.0') | |
19 println "Gradle Version: $gradleCurrent" | |
203 | 20 |
175 | 21 if (gradleCurrent < gradleV20) { |
22 throw new RuntimeException("this init script requires Gradle version 2.0 or higher") | |
23 } | |
91 | 24 |
101 | 25 gradle.ext.ssdtDevelkitLocation = gradle.ext.has('ssdtDevelkitLocation') ? gradle.ssdtDevelkitLocation : 'http://hg.ssdt-ohio.org/browse/public/develkit' |
73 | 26 |
94
1290b23e7b76
modify ivy and gradle to use same local repo
smith@nwoca.org
parents:
92
diff
changeset
|
27 ant.property(file: System.getProperty('user.home') + "/.ssdt/private.properties") |
101 | 28 gradle.ext.ivyUserDir = ant.properties['ivy.default.ivy.user.dir'] ?: System.getProperty('user.home') + "/.ivy2" |
94
1290b23e7b76
modify ivy and gradle to use same local repo
smith@nwoca.org
parents:
92
diff
changeset
|
29 |
140 | 30 gradle.ext.ssdtProjectId = System.getenv('bamboo_project_id') ?: rootProject.name |
137
cc3cd7da35a7
add projectId to environment based on bamboo id
smith@nwoca.org
parents:
136
diff
changeset
|
31 |
73 | 32 gradle.addListener(new ArtifactoryGradleSettings()) |
33 | |
175 | 34 def hostname |
35 try { | |
36 hostname = "hostname".execute().text.toLowerCase().readLines().first() | |
37 } catch (e) { | |
38 hostname = 'unknown' | |
39 } | |
115
8ddd1a6fa4ea
patch to improve identification of bamboo severs
smith@nwoca.org
parents:
114
diff
changeset
|
40 |
175 | 41 gradle.ext.bambooBuild = System.getenv().any { |
42 it.key.toLowerCase().contains('bamboo') | |
193 | 43 } || hostname?.startsWith('ssdt-ba') |
115
8ddd1a6fa4ea
patch to improve identification of bamboo severs
smith@nwoca.org
parents:
114
diff
changeset
|
44 |
129
bef2bfc61f6e
CM-133: fix bamboo plan parsing. enable showEnv to display sytem properties and env variables in -info mode
smith@nwoca.org
parents:
128
diff
changeset
|
45 gradle.ext.bambooPlan = (System.getenv('BAMBOO_PLAN') ?: 'UNKNOWN-UNKNOWN-JOB1').split('-')[0..1].join('-') |
bef2bfc61f6e
CM-133: fix bamboo plan parsing. enable showEnv to display sytem properties and env variables in -info mode
smith@nwoca.org
parents:
128
diff
changeset
|
46 logger.info "Bamboo plan: ${gradle.bambooPlan}" |
128
c93df17513f1
CM-133: add jacoco for standard coverage reports. Add sonar properties for SCM and bamboo plan
smith@nwoca.org
parents:
126
diff
changeset
|
47 |
175 | 48 gradle.ext.buildTimestamp = System.currentTimeMillis().toString().padLeft(14, '0') |
141
d3c09b4e3332
modify for hgflow. for feature branches, use timestamp for snapshots and resolve branch from ssdt-branches
Dave Smith <smith@nwoca.org>
parents:
140
diff
changeset
|
49 |
128
c93df17513f1
CM-133: add jacoco for standard coverage reports. Add sonar properties for SCM and bamboo plan
smith@nwoca.org
parents:
126
diff
changeset
|
50 gradle.ext.hgRepositoryUrl = "" |
175 | 51 try { |
52 gradle.ext.hgRepositoryUrl = ("hg path".execute().text.split('=') ?: ['', ''])[1].trim() | |
53 } catch (e) { | |
54 } | |
221
837c9249053f
USASR-2244: Update init20.gradle to pull all changesets from mercurial before attempting to calculate snapshot branch name
Christopher Springer <springer@nwoca.org>
parents:
219
diff
changeset
|
55 try { |
837c9249053f
USASR-2244: Update init20.gradle to pull all changesets from mercurial before attempting to calculate snapshot branch name
Christopher Springer <springer@nwoca.org>
parents:
219
diff
changeset
|
56 if (gradle.ext.bambooPlan) { |
837c9249053f
USASR-2244: Update init20.gradle to pull all changesets from mercurial before attempting to calculate snapshot branch name
Christopher Springer <springer@nwoca.org>
parents:
219
diff
changeset
|
57 "hg pull".execute() |
837c9249053f
USASR-2244: Update init20.gradle to pull all changesets from mercurial before attempting to calculate snapshot branch name
Christopher Springer <springer@nwoca.org>
parents:
219
diff
changeset
|
58 } |
837c9249053f
USASR-2244: Update init20.gradle to pull all changesets from mercurial before attempting to calculate snapshot branch name
Christopher Springer <springer@nwoca.org>
parents:
219
diff
changeset
|
59 } catch (e) { |
837c9249053f
USASR-2244: Update init20.gradle to pull all changesets from mercurial before attempting to calculate snapshot branch name
Christopher Springer <springer@nwoca.org>
parents:
219
diff
changeset
|
60 logger.error "exception thrown attempting to pull all changesets from mercurial", e |
837c9249053f
USASR-2244: Update init20.gradle to pull all changesets from mercurial before attempting to calculate snapshot branch name
Christopher Springer <springer@nwoca.org>
parents:
219
diff
changeset
|
61 } |
159
0c48cfd1938b
allow projects to override branchName
Dave Smith <smith@nwoca.org>
parents:
158
diff
changeset
|
62 |
169 | 63 def springModuleTranslator = [ |
175 | 64 'spring-transaction': 'spring-tx', |
65 'spring-web-servlet': 'spring-webmvc', | |
66 ].withDefault { it } | |
168
7f023317034b
add helper to normalize springframework to non-osgi jars
Dave Smith <smith@nwoca.org>
parents:
166
diff
changeset
|
67 |
7f023317034b
add helper to normalize springframework to non-osgi jars
Dave Smith <smith@nwoca.org>
parents:
166
diff
changeset
|
68 gradle.ext.normalizeSpring = { DependencyResolveDetails details -> |
175 | 69 if (details.requested.group == 'org.springframework' && details.requested.name.startsWith('org.springframework.')) { |
70 def shortName = springModuleTranslator[details.requested.name.replace('org.springframework.', 'spring-').replace('.', '-')] | |
71 details.useTarget(group: 'org.springframework', name: shortName, version: details.requested.version) | |
72 } | |
73 if (details.requested.group == 'org.springframework.security' && details.requested.name.startsWith('org.springframework.')) { | |
74 def shortName = springModuleTranslator[details.requested.name.replace('org.springframework.', 'spring-').replace('.', '-')] | |
75 details.useTarget("${details.requested.group}:$shortName:${details.requested.version}") | |
76 } | |
77 } | |
78 | |
188
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
79 gradle.ext.runtimeInfo = new RuntimeInfo() |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
80 |
178 | 81 gradle.ext.branch = new BranchInfo(System.getenv('bamboo_planRepository_branch')) |
82 gradle.ext.branchName = gradle.branch.name | |
83 gradle.ext.branchStream = gradle.branch.stream | |
84 gradle.ext.branchHash = gradle.branch.hash | |
215
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
85 println "${gradle.hgRepositoryUrl} ${gradle.branch} ${gradle.branch.version}" |
128
c93df17513f1
CM-133: add jacoco for standard coverage reports. Add sonar properties for SCM and bamboo plan
smith@nwoca.org
parents:
126
diff
changeset
|
86 |
155
6389a03379a6
CM-135: allow environment* scripts to access gradle project
Dave Smith <smith@nwoca.org>
parents:
154
diff
changeset
|
87 loadEnvironments() |
6389a03379a6
CM-135: allow environment* scripts to access gradle project
Dave Smith <smith@nwoca.org>
parents:
154
diff
changeset
|
88 |
175 | 89 gradle.environment.put('hgRepositoryUrl', gradle.hgRepositoryUrl) |
178 | 90 gradle.environment.put('branchName', gradle.branch.name) |
91 gradle.environment.put('branchStream', gradle.branch.stream) | |
92 gradle.environment.put('branchHash', gradle.branch.hash) | |
93 | |
205 | 94 |
195
a7a7d0e263d6
allow private setting of changing/dynamic cache lifetime.
smith@nwoca.org
parents:
193
diff
changeset
|
95 def cacheTimeout = 60 * 60 * 8 |
a7a7d0e263d6
allow private setting of changing/dynamic cache lifetime.
smith@nwoca.org
parents:
193
diff
changeset
|
96 if (gradle.environment['dependencyTimeout']) { |
a7a7d0e263d6
allow private setting of changing/dynamic cache lifetime.
smith@nwoca.org
parents:
193
diff
changeset
|
97 cacheTimeout = gradle.environment['dependencyTimeout'] as Integer |
197 | 98 println "setting changing dependency timeout to $cacheTimeout seconds" |
195
a7a7d0e263d6
allow private setting of changing/dynamic cache lifetime.
smith@nwoca.org
parents:
193
diff
changeset
|
99 } |
160
6af68acaf9b2
modify to use bamboo env varible to override branchName
Dave Smith <smith@nwoca.org>
parents:
159
diff
changeset
|
100 |
195
a7a7d0e263d6
allow private setting of changing/dynamic cache lifetime.
smith@nwoca.org
parents:
193
diff
changeset
|
101 gradle.ext.cacheTimeout = cacheTimeout |
175 | 102 |
124
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
103 rootProject.ext.indyCapable = { |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
104 boolean capable = true |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
105 try { |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
106 Class.forName('java.lang.invoke.MethodHandle') |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
107 } catch (e) { |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
108 capable = false |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
109 } |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
110 capable && !rootProject.hasProperty('skipIndy') |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
111 } |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
112 |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
113 rootProject.ext.useIndy = { |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
114 boolean indy = false |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
115 // first, check if a system property activates indy support |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
116 indy |= System.hasProperty('indy') && Boolean.valueOf(System.getProperty('indy')) |
79 | 117 |
124
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
118 // check ssdt environment for indy property. |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
119 indy |= (gradle.environment.indy) ? gradle.environment.indy.toBoolean() : false |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
120 |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
121 // check if the main project has an extension property setting indy (-Pindy). |
175 | 122 if (rootProject.hasProperty('indy')) { |
123 indy = (Boolean.valueOf(rootProject.indy)) | |
124 } | |
124
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
125 |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
126 // set the groovy runtime system property to ensure forked junit test will get the indy flag properly |
175 | 127 if (indy && rootProject.indyCapable()) System.setProperty("groovy.target.indy", "true") |
124
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
128 |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
129 indy && rootProject.indyCapable() |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
130 } |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
131 |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
132 println "Indy available: ${rootProject.indyCapable()} enabled: ${rootProject.useIndy()}" |
175 | 133 |
79 | 134 if (gradle.bambooBuild) { |
175 | 135 gradle.ext.ssdtGradlekitLocation = gradle.ext.has('ssdtGradlekitLocation') ? gradle.ssdtGradlekitLocation : 'http://hg.ssdt-ohio.org/ssdt/gradlekit/raw-file/tip' |
136 logger.info "applying SSDT artifactory Gradle Settings (bamboo: $gradle.bambooBuild host: $hostname)" | |
181 | 137 apply from: "${gradle.ssdtGradlekitLocation}/artifactory20.gradle" |
79 | 138 } |
76 | 139 |
175 | 140 apply from: "${gradle.ssdtDevelkitLocation}/metrics.gradle" |
85 | 141 |
136
9ce07c211984
for idea: add enabling hg, set default codestyle, set standard copyright notice
smith@nwoca.org
parents:
129
diff
changeset
|
142 rootProject.afterEvaluate { r -> |
81
36b2fd9e3861
fix handling of multi-project artifacts and local repos
smith@nwoca.org
parents:
80
diff
changeset
|
143 |
206
cf65e7327fe8
use project property for required java version
smith@nwoca.org
parents:
205
diff
changeset
|
144 if (gradle.bambooBuild && r.hasProperty('requireJavaVersion')) { |
cf65e7327fe8
use project property for required java version
smith@nwoca.org
parents:
205
diff
changeset
|
145 gradle.runtimeInfo.requireJava( r.getProperty('requireJavaVersion') ) |
cf65e7327fe8
use project property for required java version
smith@nwoca.org
parents:
205
diff
changeset
|
146 } |
cf65e7327fe8
use project property for required java version
smith@nwoca.org
parents:
205
diff
changeset
|
147 |
175 | 148 if (r.plugins.hasPlugin(org.gradle.plugins.ide.idea.IdeaPlugin)) { |
149 | |
150 r.idea.project.ipr.withXml { xml -> | |
151 if (file('.hg').exists()) { | |
152 println 'enabling HG on project' | |
153 def vcs = findComponent(xml.asNode(), 'VcsDirectoryMappings') | |
154 vcs.mapping.@vcs = 'hg4idea' | |
155 } | |
156 | |
157 def codeStyle = findComponent(xml.asNode(), 'ProjectCodeStyleSettingsManager') | |
158 if (codeStyle) { | |
159 xml.asNode().remove(codeStyle) | |
160 } | |
161 | |
162 def styleManager = xml.asNode().appendNode('component', [name: 'ProjectCodeStyleSettingsManager']) | |
163 styleManager.appendNode 'option', [name: 'USE_PER_PROJECT_SETTINGS', value: true] | |
164 | |
165 def styleOptions = new NodeBuilder().option(name: 'PER_PROJECT_SETTINGS') { | |
166 value { | |
167 GroovyCodeStyleSettings { | |
168 option(name: 'CLASS_COUNT_TO_USE_IMPORT_ON_DEMAND', value: '10') | |
169 option(name: 'PACKAGES_TO_USE_IMPORT_ON_DEMAND') { | |
170 value { | |
171 'package'(name: "java.awt", withSubpackages: false, static: false) | |
172 'package'(name: "javax.swing", withSubpackages: false, static: false) | |
173 'package'(name: "javax.persistence", withSubpackages: false, static: false) | |
174 'package'(name: "javax.validation", withSubpackages: true, static: false) | |
175 } | |
176 } | |
177 } | |
178 XML { | |
179 option(name: 'XML_LEGACY_SETTINGS_IMPORTED', value: true) | |
180 } | |
181 | |
182 } | |
183 } | |
184 | |
185 styleManager.append styleOptions | |
136
9ce07c211984
for idea: add enabling hg, set default codestyle, set standard copyright notice
smith@nwoca.org
parents:
129
diff
changeset
|
186 |
175 | 187 if (r.group.contains('org.ssdt')) { |
188 | |
189 def copyRight = findComponent(xml.asNode(), 'CopyrightManager') | |
190 if (copyRight) { | |
191 xml.asNode().remove(copyRight) | |
192 } | |
193 | |
194 copyRight = new NodeBuilder().component(name: 'CopyrightManager', default: 'ODE') { | |
195 | |
196 copyright { | |
197 option(name: 'notice', value: 'Copyright (c) $today.year. Ohio Department of Education. - All Rights Reserved.\nUnauthorized copying of this file, in any medium, is strictly prohibited.\nWritten by State Software Development Team (http://ssdt.oecn.k12.oh.us/)') | |
198 option(name: 'keyword', value: 'Copyright') | |
199 option(name: 'allowReplaceKeyword', value: 'South Front') | |
200 option(name: 'myName', value: 'ODE') | |
201 option(name: 'myLocal', value: true) | |
202 } | |
203 LanguageOptions(name: 'CSS') { | |
204 option(name: 'fileTypeOverride', value: 1) | |
205 } | |
206 LanguageOptions(name: 'JSP') { | |
207 option(name: 'fileTypeOverride', value: 1) | |
208 option(name: 'prefixLines', value: false) | |
209 } | |
210 LanguageOptions(name: 'JSPX') { | |
211 option(name: 'fileTypeOverride', value: 1) | |
212 option(name: 'prefixLines', value: false) | |
213 } | |
214 LanguageOptions(name: 'JavaScript') { | |
215 option(name: 'fileTypeOverride', value: 1) | |
216 } | |
217 LanguageOptions(name: 'Properties') { | |
218 option(name: 'fileTypeOverride', value: 1) | |
219 } | |
220 } | |
221 | |
222 xml.asNode().append copyRight | |
223 | |
224 } | |
225 } | |
226 } | |
227 | |
136
9ce07c211984
for idea: add enabling hg, set default codestyle, set standard copyright notice
smith@nwoca.org
parents:
129
diff
changeset
|
228 } |
9ce07c211984
for idea: add enabling hg, set default codestyle, set standard copyright notice
smith@nwoca.org
parents:
129
diff
changeset
|
229 |
9ce07c211984
for idea: add enabling hg, set default codestyle, set standard copyright notice
smith@nwoca.org
parents:
129
diff
changeset
|
230 def findComponent(project, name) { |
175 | 231 project.component.find { it.@name == name } |
81
36b2fd9e3861
fix handling of multi-project artifacts and local repos
smith@nwoca.org
parents:
80
diff
changeset
|
232 } |
36b2fd9e3861
fix handling of multi-project artifacts and local repos
smith@nwoca.org
parents:
80
diff
changeset
|
233 |
36b2fd9e3861
fix handling of multi-project artifacts and local repos
smith@nwoca.org
parents:
80
diff
changeset
|
234 allprojects { |
85 | 235 |
214
0ca4f3c952b7
DEP-11: add depency-lock plugin and a resolver to supply dynamic version based on branch. Cleanup metrics includes
smith@nwoca.org
parents:
211
diff
changeset
|
236 apply plugin: nebula.plugin.dependencylock.DependencyLockPlugin |
216
b628d49d2891
DEP-11: change name of lock file for release branch. update release script to depend on new resolution and dependency locking
smith@nwoca.org
parents:
215
diff
changeset
|
237 |
b628d49d2891
DEP-11: change name of lock file for release branch. update release script to depend on new resolution and dependency locking
smith@nwoca.org
parents:
215
diff
changeset
|
238 dependencyLock { |
b628d49d2891
DEP-11: change name of lock file for release branch. update release script to depend on new resolution and dependency locking
smith@nwoca.org
parents:
215
diff
changeset
|
239 globalLockFile = gradle.branch.isRelease() ? 'release.lock' : 'global.lock' |
b628d49d2891
DEP-11: change name of lock file for release branch. update release script to depend on new resolution and dependency locking
smith@nwoca.org
parents:
215
diff
changeset
|
240 } |
b628d49d2891
DEP-11: change name of lock file for release branch. update release script to depend on new resolution and dependency locking
smith@nwoca.org
parents:
215
diff
changeset
|
241 |
214
0ca4f3c952b7
DEP-11: add depency-lock plugin and a resolver to supply dynamic version based on branch. Cleanup metrics includes
smith@nwoca.org
parents:
211
diff
changeset
|
242 configurations.all { |
0ca4f3c952b7
DEP-11: add depency-lock plugin and a resolver to supply dynamic version based on branch. Cleanup metrics includes
smith@nwoca.org
parents:
211
diff
changeset
|
243 resolutionStrategy.eachDependency { DependencyResolveDetails details -> |
0ca4f3c952b7
DEP-11: add depency-lock plugin and a resolver to supply dynamic version based on branch. Cleanup metrics includes
smith@nwoca.org
parents:
211
diff
changeset
|
244 if (details.requested.group == 'org.ssdt_ohio' && !details.requested.version ) { |
0ca4f3c952b7
DEP-11: add depency-lock plugin and a resolver to supply dynamic version based on branch. Cleanup metrics includes
smith@nwoca.org
parents:
211
diff
changeset
|
245 details.useVersion( "latest.${gradle.branch.defaultDependencyStatus}" ) |
0ca4f3c952b7
DEP-11: add depency-lock plugin and a resolver to supply dynamic version based on branch. Cleanup metrics includes
smith@nwoca.org
parents:
211
diff
changeset
|
246 } |
0ca4f3c952b7
DEP-11: add depency-lock plugin and a resolver to supply dynamic version based on branch. Cleanup metrics includes
smith@nwoca.org
parents:
211
diff
changeset
|
247 if (details.requested.version == 'default') { |
0ca4f3c952b7
DEP-11: add depency-lock plugin and a resolver to supply dynamic version based on branch. Cleanup metrics includes
smith@nwoca.org
parents:
211
diff
changeset
|
248 details.useVersion("latest.${gradle.branch.defaultDependencyStatus}" ) |
0ca4f3c952b7
DEP-11: add depency-lock plugin and a resolver to supply dynamic version based on branch. Cleanup metrics includes
smith@nwoca.org
parents:
211
diff
changeset
|
249 } |
0ca4f3c952b7
DEP-11: add depency-lock plugin and a resolver to supply dynamic version based on branch. Cleanup metrics includes
smith@nwoca.org
parents:
211
diff
changeset
|
250 } |
0ca4f3c952b7
DEP-11: add depency-lock plugin and a resolver to supply dynamic version based on branch. Cleanup metrics includes
smith@nwoca.org
parents:
211
diff
changeset
|
251 } |
0ca4f3c952b7
DEP-11: add depency-lock plugin and a resolver to supply dynamic version based on branch. Cleanup metrics includes
smith@nwoca.org
parents:
211
diff
changeset
|
252 |
84 | 253 task cleanLocal(description: "removes all artifacts from developer's local repository") << { |
254 | |
175 | 255 def local = project.repositories.find { it.name == 'local' } |
256 if (local) { | |
81
36b2fd9e3861
fix handling of multi-project artifacts and local repos
smith@nwoca.org
parents:
80
diff
changeset
|
257 logger.info "removing local repo: $it" |
175 | 258 new File(System.properties['user.home'] + "/.ssdt/local-repo").deleteDir() |
123
6f1918544f7f
Add test to cleanLocal to ensure local repo was removed
smith@nwoca.org
parents:
115
diff
changeset
|
259 def localDir = new File(gradle.ivyUserDir + "/local") |
6f1918544f7f
Add test to cleanLocal to ensure local repo was removed
smith@nwoca.org
parents:
115
diff
changeset
|
260 localDir.deleteDir() |
6f1918544f7f
Add test to cleanLocal to ensure local repo was removed
smith@nwoca.org
parents:
115
diff
changeset
|
261 logger.info "verifying removal of local repo" |
6f1918544f7f
Add test to cleanLocal to ensure local repo was removed
smith@nwoca.org
parents:
115
diff
changeset
|
262 if (localDir.exists()) { |
6f1918544f7f
Add test to cleanLocal to ensure local repo was removed
smith@nwoca.org
parents:
115
diff
changeset
|
263 throw new org.gradle.api.GradleException("Unable to clean ${localDir}. Files may be locked by another process.") |
6f1918544f7f
Add test to cleanLocal to ensure local repo was removed
smith@nwoca.org
parents:
115
diff
changeset
|
264 } |
75 | 265 } |
175 | 266 } |
267 | |
268 cleanLocal.onlyIf { | |
81
36b2fd9e3861
fix handling of multi-project artifacts and local repos
smith@nwoca.org
parents:
80
diff
changeset
|
269 project.repositories.any { it.name == 'local' } |
175 | 270 } |
271 | |
180
1bdb6e1f2fdb
handle outputs update handling including env changes
smith@nwoca.org
parents:
179
diff
changeset
|
272 project.ext.previousBuildenv = project.file('build/buildenv.txt').exists() ? project.file('build/buildenv.txt').text : 'none' |
1bdb6e1f2fdb
handle outputs update handling including env changes
smith@nwoca.org
parents:
179
diff
changeset
|
273 |
175 | 274 tasks.addRule("Pattern: <environment>As[Test]Properties: Generates <environment>.properties as resource or Test resource") { String taskName -> |
161
8dd6adab9388
add Rule for converting arbitrary environment's to property files
Dave Smith <smith@nwoca.org>
parents:
160
diff
changeset
|
275 if ((taskName - 'Test').endsWith("AsProperties") && !taskName.startsWith('clean')) { |
185
e1762e4ad070
write properties to correct sourceset output. allow property filename to overridden more easily
smith@nwoca.org
parents:
184
diff
changeset
|
276 // def t = taskName.contains('Test') ? processTestResources.destinationDir : processResources.destinationDir |
e1762e4ad070
write properties to correct sourceset output. allow property filename to overridden more easily
smith@nwoca.org
parents:
184
diff
changeset
|
277 def t = taskName.contains('Test') ? sourceSets.test.output.resourcesDir : sourceSets.main.output.resourcesDir |
161
8dd6adab9388
add Rule for converting arbitrary environment's to property files
Dave Smith <smith@nwoca.org>
parents:
160
diff
changeset
|
278 def e = (taskName - 'Test' - 'AsProperties').capitalize() |
8dd6adab9388
add Rule for converting arbitrary environment's to property files
Dave Smith <smith@nwoca.org>
parents:
160
diff
changeset
|
279 task(taskName) { |
185
e1762e4ad070
write properties to correct sourceset output. allow property filename to overridden more easily
smith@nwoca.org
parents:
184
diff
changeset
|
280 ext.outputDir = t |
e1762e4ad070
write properties to correct sourceset output. allow property filename to overridden more easily
smith@nwoca.org
parents:
184
diff
changeset
|
281 ext.propertyFile = "${e.toLowerCase()}.properties" |
180
1bdb6e1f2fdb
handle outputs update handling including env changes
smith@nwoca.org
parents:
179
diff
changeset
|
282 ext.buildenv = project.file('build/buildenv.txt') |
181 | 283 inputs.files project.file("../environment${e}.groovy"), project.file("../private${e}.groovy"), project.file('../private.properties') |
185
e1762e4ad070
write properties to correct sourceset output. allow property filename to overridden more easily
smith@nwoca.org
parents:
184
diff
changeset
|
284 outputs.files new File(outputDir,propertyFile), buildenv |
180
1bdb6e1f2fdb
handle outputs update handling including env changes
smith@nwoca.org
parents:
179
diff
changeset
|
285 outputs.upToDateWhen { |
1bdb6e1f2fdb
handle outputs update handling including env changes
smith@nwoca.org
parents:
179
diff
changeset
|
286 gradle.env == project.previousBuildenv |
1bdb6e1f2fdb
handle outputs update handling including env changes
smith@nwoca.org
parents:
179
diff
changeset
|
287 } |
161
8dd6adab9388
add Rule for converting arbitrary environment's to property files
Dave Smith <smith@nwoca.org>
parents:
160
diff
changeset
|
288 doLast { |
8dd6adab9388
add Rule for converting arbitrary environment's to property files
Dave Smith <smith@nwoca.org>
parents:
160
diff
changeset
|
289 t.mkdirs() |
180
1bdb6e1f2fdb
handle outputs update handling including env changes
smith@nwoca.org
parents:
179
diff
changeset
|
290 buildenv.text = gradle.env |
173
50db7a832af5
add subproject name when generating properties
smith@nwoca.org
parents:
172
diff
changeset
|
291 def ps = gradle."environment${e}".toProperties() |
175 | 292 ps['ssdt.project'] = project.name |
185
e1762e4ad070
write properties to correct sourceset output. allow property filename to overridden more easily
smith@nwoca.org
parents:
184
diff
changeset
|
293 def pf = new File(outputDir,propertyFile) |
186 | 294 ext.outputPropertyFile = pf |
185
e1762e4ad070
write properties to correct sourceset output. allow property filename to overridden more easily
smith@nwoca.org
parents:
184
diff
changeset
|
295 ps.store(pf.newOutputStream(), "by $taskName of $this") |
e1762e4ad070
write properties to correct sourceset output. allow property filename to overridden more easily
smith@nwoca.org
parents:
184
diff
changeset
|
296 def l = pf.readLines().sort() |
e1762e4ad070
write properties to correct sourceset output. allow property filename to overridden more easily
smith@nwoca.org
parents:
184
diff
changeset
|
297 pf.text = l.join('\n') |
161
8dd6adab9388
add Rule for converting arbitrary environment's to property files
Dave Smith <smith@nwoca.org>
parents:
160
diff
changeset
|
298 } |
8dd6adab9388
add Rule for converting arbitrary environment's to property files
Dave Smith <smith@nwoca.org>
parents:
160
diff
changeset
|
299 } |
8dd6adab9388
add Rule for converting arbitrary environment's to property files
Dave Smith <smith@nwoca.org>
parents:
160
diff
changeset
|
300 } |
8dd6adab9388
add Rule for converting arbitrary environment's to property files
Dave Smith <smith@nwoca.org>
parents:
160
diff
changeset
|
301 } |
8dd6adab9388
add Rule for converting arbitrary environment's to property files
Dave Smith <smith@nwoca.org>
parents:
160
diff
changeset
|
302 |
175 | 303 if (gradle.hasProperty('environmentDatabase')) { |
304 tasks.addRule("Pattern: database{Drop|Create}...: drops or creates the environment's database") { String taskName -> | |
305 if (taskName.startsWith('database') && (taskName.contains('Drop') || taskName.contains('Create'))) { | |
306 task(taskName) { | |
307 doLast { | |
308 def dropIt = taskName.contains("Drop") | |
309 def createIt = taskName.contains("Create") | |
310 def driverName = gradle.environmentDatabase.jdbc.driverClassName | |
311 def databaseUrl = gradle.environmentDatabase.jdbc.url | |
312 if (driverName != "org.postgresql.Driver") { | |
313 logger.info "skipping database operation for non-postgresql driver" | |
314 throw new StopActionException("driver $driverName not supported by $taskName") | |
315 } | |
316 if (!configurations.hasProperty('jdbcdriver')) { | |
317 throw new GradleException("databaseDrop requires a 'jdbcdriver' configuration with a postgresql (or other) driver") | |
318 } | |
319 configurations.jdbcdriver.each { File file -> | |
320 GroovyObject.class.classLoader.addURL(file.toURL()) | |
321 } | |
322 Class.forName(driverName) | |
323 def url = new URI(databaseUrl.substring(5)) | |
324 def jdbcBaseUrl = databaseUrl - url.path | |
325 def databaseName = url.path - "/" | |
326 def adminUrl = jdbcBaseUrl + "/postgres" | |
327 def sql = Sql.newInstance(adminUrl, | |
328 gradle.environmentDatabase.jdbc.username, | |
329 gradle.environmentDatabase.jdbc.password, | |
330 driverName) | |
331 if (dropIt) { | |
192
4f8780714e4d
disconnect sessions prior to dropping database
smith@nwoca.org
parents:
191
diff
changeset
|
332 logger.info "disconnecting sessions from $databaseName" |
202
b217dc3b654a
USASR-1835: Attempt to fix quoting of database name in sql
Christopher Springer <springer@nwoca.org>
parents:
201
diff
changeset
|
333 sql.execute "REVOKE CONNECT ON DATABASE \"" + databaseName + "\" FROM public;" |
b217dc3b654a
USASR-1835: Attempt to fix quoting of database name in sql
Christopher Springer <springer@nwoca.org>
parents:
201
diff
changeset
|
334 sql.execute "REVOKE CONNECT ON DATABASE \"" + databaseName + "\" FROM " + gradle.environmentDatabase.jdbc.username + ";" |
201
e721a977726b
Revoke ability to connect to database before attempting to drop it for task database(Drop|Create)
Christopher Springer <springer@nwoca.org>
parents:
200
diff
changeset
|
335 sql.execute "SELECT pg_terminate_backend(pg_stat_activity.pid) FROM pg_stat_activity WHERE pg_stat_activity.datname = '" + databaseName + "';" |
175 | 336 logger.info "dropping $databaseName (if exists) from $adminUrl" |
337 sql.execute 'DROP DATABASE IF EXISTS "' + databaseName + '";' | |
338 } | |
174
e949e86b570e
add databaseDrop|Create tasks for managing environment psql databases
smith@nwoca.org
parents:
173
diff
changeset
|
339 |
175 | 340 if (createIt) { |
341 logger.info "Creating database $databaseName at $adminUrl" | |
342 sql.execute 'CREATE DATABASE "' + databaseName + '";' | |
343 } | |
344 } | |
345 } | |
346 | |
347 } | |
348 } | |
349 } | |
350 | |
219
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
351 tasks.addRule("release{Major|Minor|Patch|n.n.n}: create release branch") { String taskName -> |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
352 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
353 def matcher = (taskName =~ /^release(Major|Minor|Patch|\d{1,3}\.\d{1,3}\.\d{1,3})$/) |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
354 if (matcher.matches()) { |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
355 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
356 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
357 dependencyLock.globalLockFile = 'release.lock' |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
358 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
359 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
360 task('doReleaseBranch') { |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
361 ext.requested = matcher[0][1].toLowerCase() |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
362 } << { |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
363 def releaseVersion = determineReleaseVersion(requested) |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
364 def releaseStream = releaseVersion.isHotfix() ? 'hotfix' : 'release' |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
365 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
366 println "-" * 60 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
367 println "Preparing to create branch\n" |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
368 println "\tproject:\t${gradle.rootProject.name}" |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
369 println "\tcurrent:\t${gradle.branch} ($gradle.branch.version)" |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
370 println() |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
371 println "\ttype :\t${releaseStream.toUpperCase()}" |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
372 println "\tversion:\t${releaseVersion}" |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
373 println "\ttarget :\t${releaseStream}/v${releaseVersion}" |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
374 println() |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
375 println("-" * 60) |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
376 println "DRY RUN".center(60) |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
377 println("-" * 60) |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
378 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
379 println "hg flow ${releaseStream} start v${releaseVersion} --dirty --dry-run".execute().text |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
380 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
381 println "-" * 60 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
382 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
383 if (!confirmPrompt("Continue?")) { |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
384 throw new BuildCancelledException("release branching canceled by user request") |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
385 } |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
386 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
387 println "hg flow ${releaseStream} start v${releaseVersion} --dirty".execute().text |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
388 println "hg update ${releaseStream}/v${releaseVersion}".execute().text |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
389 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
390 } |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
391 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
392 task('doCommitLock') << { |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
393 println 'hg status'.execute().text |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
394 println 'hg commit release.lock -A -m "lock dynamic dependencies for release"'.execute().text |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
395 } |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
396 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
397 def branchTasks = ['doReleaseBranch', 'deleteGlobalLock', 'generateGlobalLock', 'saveGlobalLock', 'doCommitLock'] |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
398 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
399 task(taskName) { |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
400 dependsOn branchTasks |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
401 } |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
402 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
403 branchTasks.tail().inject(branchTasks.head()) { a, b -> |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
404 tasks[b].mustRunAfter a |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
405 b |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
406 } |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
407 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
408 } |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
409 } |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
410 |
75 | 411 } |
412 | |
219
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
413 private static String readLine(String message, String defaultValue = null) { |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
414 String _message = "> $message" + (defaultValue ? " [$defaultValue] " : "") |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
415 if (System.console()) { |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
416 return System.console().readLine(_message) ?: defaultValue |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
417 } |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
418 println "$_message " |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
419 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
420 System.in.newReader().readLine() ?: defaultValue |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
421 } |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
422 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
423 private static boolean confirmPrompt(String message, boolean defaultValue = false) { |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
424 String defaultStr = defaultValue ? 'Y' : 'n' |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
425 String consoleVal = readLine("${message} (Y|n)", defaultStr) |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
426 if (consoleVal) { |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
427 return consoleVal.toLowerCase().startsWith('y') |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
428 } |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
429 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
430 defaultValue |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
431 } |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
432 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
433 private Version determineReleaseVersion(String requested) { |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
434 if (requested == 'major') { |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
435 return gradle.branch.version.nextMajor() |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
436 } else if (requested == 'minor') { |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
437 return gradle.branch.version.nextMinor() |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
438 } else if (requested == 'patch') { |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
439 return gradle.branch.version.nextPatch() |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
440 } else { |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
441 return new Version(*requested.split(/\./)*.toInteger(), false) |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
442 } |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
443 } |
114
9ed6a36104ed
Improve dependency resolution performance: use gradle resolver instead of ivy and use new repo which does not cnotain snapshots
smith@nwoca.org
parents:
109
diff
changeset
|
444 |
73 | 445 class ArtifactoryGradleSettings extends BuildAdapter implements BuildListener { |
175 | 446 |
73 | 447 def void projectsEvaluated(Gradle gradle) { |
83 | 448 def ssdtArtifactory = 'http://repos.ssdt.nwoca.org/artifactory' |
175 | 449 Project root = gradle.getRootProject() |
215
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
450 |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
451 |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
452 def branchVersioning = gradle.rootProject.version == 'unspecified' |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
453 |
114
9ed6a36104ed
Improve dependency resolution performance: use gradle resolver instead of ivy and use new repo which does not cnotain snapshots
smith@nwoca.org
parents:
109
diff
changeset
|
454 root.allprojects { |
175 | 455 |
141
d3c09b4e3332
modify for hgflow. for feature branches, use timestamp for snapshots and resolve branch from ssdt-branches
Dave Smith <smith@nwoca.org>
parents:
140
diff
changeset
|
456 def thisProject = delegate |
175 | 457 thisProject.status = 'integration' |
458 if (gradle.branchStream) { | |
215
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
459 if (branchVersioning) { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
460 thisProject.version = gradle.branch.version |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
461 thisProject.status = gradle.branch.defaultDependencyStatus |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
462 } else { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
463 |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
464 thisProject.status = 'integration' |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
465 def fixupVersion = thisProject.version - ".SNAPSHOT" |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
466 if (gradle.branchStream == 'feature') { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
467 fixupVersion = fixupVersion + ".SNAPSHOT" |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
468 } |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
469 if (gradle.branchStream == 'develop') { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
470 fixupVersion = fixupVersion + ".SNAPSHOT" |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
471 } |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
472 if (gradle.branchStream in ['production', 'release', 'hotfix']) { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
473 thisProject.status = 'release' |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
474 } |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
475 thisProject.version = fixupVersion |
175 | 476 } |
477 } | |
478 | |
74 | 479 configurations.all { |
195
a7a7d0e263d6
allow private setting of changing/dynamic cache lifetime.
smith@nwoca.org
parents:
193
diff
changeset
|
480 resolutionStrategy.cacheChangingModulesFor gradle.cacheTimeout, 'seconds' |
a7a7d0e263d6
allow private setting of changing/dynamic cache lifetime.
smith@nwoca.org
parents:
193
diff
changeset
|
481 resolutionStrategy.cacheDynamicVersionsFor gradle.cacheTimeout, 'seconds' |
175 | 482 } |
73 | 483 repositories { |
175 | 484 |
485 if (!gradle.bambooBuild) { | |
486 ivy { | |
81
36b2fd9e3861
fix handling of multi-project artifacts and local repos
smith@nwoca.org
parents:
80
diff
changeset
|
487 name = 'local' |
175 | 488 artifactPattern gradle.ivyUserDir + '/local/[artifact]-[revision](-[classifier]).[ext]' |
489 ivyPattern gradle.ivyUserDir + "/local/[module]-ivy-[revision].xml" | |
490 } | |
141
d3c09b4e3332
modify for hgflow. for feature branches, use timestamp for snapshots and resolve branch from ssdt-branches
Dave Smith <smith@nwoca.org>
parents:
140
diff
changeset
|
491 } |
114
9ed6a36104ed
Improve dependency resolution performance: use gradle resolver instead of ivy and use new repo which does not cnotain snapshots
smith@nwoca.org
parents:
109
diff
changeset
|
492 |
175 | 493 if (gradle.branchStream == 'feature') { |
494 ivy { | |
495 name = 'ssdt-branches' | |
177 | 496 url = "${ssdtArtifactory}/ssdt-branches/${gradle.branchHash}/" |
497 layout "pattern", { | |
498 artifact "[organization]/[module]/[revision]/[module]-[revision](-[classifier]).[ext]" | |
499 ivy "[organization]/[module]/ivy-[revision].xml" | |
500 } | |
175 | 501 } |
74 | 502 } |
114
9ed6a36104ed
Improve dependency resolution performance: use gradle resolver instead of ivy and use new repo which does not cnotain snapshots
smith@nwoca.org
parents:
109
diff
changeset
|
503 |
175 | 504 ivy { |
505 name = 'ssdt-snapshots' | |
176
e0865f323a60
correct layouts for ssdt repositories. remove ssdt-releases repo
smith@nwoca.org
parents:
175
diff
changeset
|
506 url = "${ssdtArtifactory}/ssdt-snapshots" |
e0865f323a60
correct layouts for ssdt repositories. remove ssdt-releases repo
smith@nwoca.org
parents:
175
diff
changeset
|
507 layout "pattern", { |
e0865f323a60
correct layouts for ssdt repositories. remove ssdt-releases repo
smith@nwoca.org
parents:
175
diff
changeset
|
508 artifact "[organization]/[module]/[revision]/[module]-[revision](-[classifier]).[ext]" |
e0865f323a60
correct layouts for ssdt repositories. remove ssdt-releases repo
smith@nwoca.org
parents:
175
diff
changeset
|
509 artifact "[organization]/[module]/[revision]/[artifact]-[revision](-[classifier]).[ext]" |
e0865f323a60
correct layouts for ssdt repositories. remove ssdt-releases repo
smith@nwoca.org
parents:
175
diff
changeset
|
510 ivy "[organization]/[module]/ivy-[revision].xml" |
e0865f323a60
correct layouts for ssdt repositories. remove ssdt-releases repo
smith@nwoca.org
parents:
175
diff
changeset
|
511 m2compatible = true |
e0865f323a60
correct layouts for ssdt repositories. remove ssdt-releases repo
smith@nwoca.org
parents:
175
diff
changeset
|
512 } |
175 | 513 } |
114
9ed6a36104ed
Improve dependency resolution performance: use gradle resolver instead of ivy and use new repo which does not cnotain snapshots
smith@nwoca.org
parents:
109
diff
changeset
|
514 |
9ed6a36104ed
Improve dependency resolution performance: use gradle resolver instead of ivy and use new repo which does not cnotain snapshots
smith@nwoca.org
parents:
109
diff
changeset
|
515 maven { |
9ed6a36104ed
Improve dependency resolution performance: use gradle resolver instead of ivy and use new repo which does not cnotain snapshots
smith@nwoca.org
parents:
109
diff
changeset
|
516 name = 'ssdt-repository' |
9ed6a36104ed
Improve dependency resolution performance: use gradle resolver instead of ivy and use new repo which does not cnotain snapshots
smith@nwoca.org
parents:
109
diff
changeset
|
517 url = "${ssdtArtifactory}/repository" |
9ed6a36104ed
Improve dependency resolution performance: use gradle resolver instead of ivy and use new repo which does not cnotain snapshots
smith@nwoca.org
parents:
109
diff
changeset
|
518 } |
9ed6a36104ed
Improve dependency resolution performance: use gradle resolver instead of ivy and use new repo which does not cnotain snapshots
smith@nwoca.org
parents:
109
diff
changeset
|
519 |
175 | 520 } |
190
524680aba8d3
add code to re-order remote (non-ssdt) repositories. works-around problem with gretty 1.1.8
smith@nwoca.org
parents:
189
diff
changeset
|
521 |
191 | 522 def remoteRepos = thisProject.repositories.findAll { it.hasProperty('url') && !(it.name == 'local' || it.url.toString().contains('ssdt')) } |
190
524680aba8d3
add code to re-order remote (non-ssdt) repositories. works-around problem with gretty 1.1.8
smith@nwoca.org
parents:
189
diff
changeset
|
523 if (remoteRepos) { |
524680aba8d3
add code to re-order remote (non-ssdt) repositories. works-around problem with gretty 1.1.8
smith@nwoca.org
parents:
189
diff
changeset
|
524 logger.warn "WARNING: Remote repositories configured for $thisProject:\n" + remoteRepos.collect { "\t$it.name $it.url " }.join('\n') + "\n Moved to lowest priority..." |
524680aba8d3
add code to re-order remote (non-ssdt) repositories. works-around problem with gretty 1.1.8
smith@nwoca.org
parents:
189
diff
changeset
|
525 remoteRepos.each { |
524680aba8d3
add code to re-order remote (non-ssdt) repositories. works-around problem with gretty 1.1.8
smith@nwoca.org
parents:
189
diff
changeset
|
526 thisProject.repositories.remove(it) |
524680aba8d3
add code to re-order remote (non-ssdt) repositories. works-around problem with gretty 1.1.8
smith@nwoca.org
parents:
189
diff
changeset
|
527 thisProject.repositories.addLast(it) |
524680aba8d3
add code to re-order remote (non-ssdt) repositories. works-around problem with gretty 1.1.8
smith@nwoca.org
parents:
189
diff
changeset
|
528 } |
524680aba8d3
add code to re-order remote (non-ssdt) repositories. works-around problem with gretty 1.1.8
smith@nwoca.org
parents:
189
diff
changeset
|
529 } |
191 | 530 logger.info "$thisProject configured repositories:\n" + thisProject.repositories.collect {"\t$it.name ${it.hasProperty('url') ? it.url : '' }" }.join('\n') |
190
524680aba8d3
add code to re-order remote (non-ssdt) repositories. works-around problem with gretty 1.1.8
smith@nwoca.org
parents:
189
diff
changeset
|
531 |
175 | 532 |
176
e0865f323a60
correct layouts for ssdt repositories. remove ssdt-releases repo
smith@nwoca.org
parents:
175
diff
changeset
|
533 if (thisProject.repositories.find { it.name == 'local' } && thisProject.getTasksByName('uploadArchives', false)) { |
87 | 534 uploadArchives { |
175 | 535 repositories { |
536 add thisProject.repositories.local | |
87 | 537 } |
538 } | |
175 | 539 |
126 | 540 thisProject.tasks.create("publishLocal") { |
87 | 541 description = "Publishes this projects artifacts to developer's local repository" |
542 dependsOn = ["uploadArchives"] | |
543 } | |
124
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
544 } |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
545 |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
546 } |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
547 |
175 | 548 root.subprojects { p -> |
124
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
549 if (root.useIndy()) { |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
550 def groovyIndy = p.configurations.compile.files.find { f -> f.name.startsWith('groovy-all') && f.name.contains('-indy') } |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
551 if (groovyIndy) { |
203 | 552 println "enabling indy compilation on $p" |
175 | 553 [compileGroovy.groovyOptions, compileTestGroovy.groovyOptions]*.with { |
554 optimizationOptions = [indy: true] | |
124
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
555 } |
81a8ecfbc8fa
update init script to support groovy indy builds
smith@nwoca.org
parents:
123
diff
changeset
|
556 } |
175 | 557 } |
73 | 558 } |
559 } | |
95
ebb42488396a
modify wrapper to use gradle version when executed
smith@nwoca.org
parents:
94
diff
changeset
|
560 } |
97
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
561 |
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
562 |
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
563 task showEnvironments << { |
175 | 564 println "Defined environments: $gradle.environments" |
565 gradle.environments.each { e -> | |
566 println "\n $e:" | |
567 gradle.getProperty(e).flatten().sort { it.key }.each { k, v -> | |
568 println String.format(' %25s = %s', k, k.contains('password') ? "********" : v) | |
105
f7b0f9d286b8
allow environment variables to be overridden on command line
smith@nwoca.org
parents:
104
diff
changeset
|
569 } |
97
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
570 } |
175 | 571 if (logger.isInfoEnabled()) { |
129
bef2bfc61f6e
CM-133: fix bamboo plan parsing. enable showEnv to display sytem properties and env variables in -info mode
smith@nwoca.org
parents:
128
diff
changeset
|
572 println "System properties:" |
bef2bfc61f6e
CM-133: fix bamboo plan parsing. enable showEnv to display sytem properties and env variables in -info mode
smith@nwoca.org
parents:
128
diff
changeset
|
573 System.properties.each { println " $it" } |
bef2bfc61f6e
CM-133: fix bamboo plan parsing. enable showEnv to display sytem properties and env variables in -info mode
smith@nwoca.org
parents:
128
diff
changeset
|
574 println "env variables:" |
bef2bfc61f6e
CM-133: fix bamboo plan parsing. enable showEnv to display sytem properties and env variables in -info mode
smith@nwoca.org
parents:
128
diff
changeset
|
575 System.getenv().each { println " $it" } |
bef2bfc61f6e
CM-133: fix bamboo plan parsing. enable showEnv to display sytem properties and env variables in -info mode
smith@nwoca.org
parents:
128
diff
changeset
|
576 } |
97
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
577 } |
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
578 |
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
579 def loadEnvironments() { |
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
580 def developerPrivate = new Properties() |
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
581 if (file('private.properties').exists()) { |
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
582 developerPrivate.load(file('private.properties').newReader()) |
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
583 } |
106
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
584 def envOverrides = [:] |
175 | 585 |
586 if (!hasProperty('env')) { | |
106
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
587 gradle.ext.env = developerPrivate.env ?: 'dev' |
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
588 } else { |
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
589 def values = getProperty('env').split(',') |
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
590 gradle.ext.env = values.first() |
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
591 values.tail().each { |
175 | 592 def (k, v) = it.split('=') |
593 envOverrides.put(k, v) | |
106
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
594 } |
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
595 } |
175 | 596 |
106
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
597 println "Environment is: $gradle.env ($envOverrides)" |
101 | 598 def slurper = new ConfigSlurper(gradle.env) |
175 | 599 slurper.setBinding(['gradle': gradle]) |
600 | |
601 def environment = slurper.parse( | |
602 '''deploy.mode="production" | |
162
29c3af8dc031
add default global deploy.mode
Dave Smith <smith@nwoca.org>
parents:
161
diff
changeset
|
603 environments { |
29c3af8dc031
add default global deploy.mode
Dave Smith <smith@nwoca.org>
parents:
161
diff
changeset
|
604 test { deploy.mode="test" } |
29c3af8dc031
add default global deploy.mode
Dave Smith <smith@nwoca.org>
parents:
161
diff
changeset
|
605 dev { deploy.mode="development"} |
29c3af8dc031
add default global deploy.mode
Dave Smith <smith@nwoca.org>
parents:
161
diff
changeset
|
606 }''') |
175 | 607 if (developerPrivate['deploy.mode']) { |
608 environment.put('deploy.mode', developerPrivate['deploy.mode']) | |
609 } | |
610 | |
216
b628d49d2891
DEP-11: change name of lock file for release branch. update release script to depend on new resolution and dependency locking
smith@nwoca.org
parents:
215
diff
changeset
|
611 environment.put('branchInfo',gradle.branch) |
b628d49d2891
DEP-11: change name of lock file for release branch. update release script to depend on new resolution and dependency locking
smith@nwoca.org
parents:
215
diff
changeset
|
612 environment.put('branchVersion',gradle.branch.version.toString()) |
97
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
613 def environments = [] |
162
29c3af8dc031
add default global deploy.mode
Dave Smith <smith@nwoca.org>
parents:
161
diff
changeset
|
614 gradle.ext.environment = environment |
163
c5f09d617715
process environment files in name order
Dave Smith <smith@nwoca.org>
parents:
162
diff
changeset
|
615 file('.').listFiles().findAll { it.name ==~ /^environment.*\.groovy$/ }.sort { it.name }.each { envFile -> |
97
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
616 def envName = envFile.name - '.groovy' |
107
167745cd8af9
add support for private environment files in slurper format
smith@nwoca.org
parents:
106
diff
changeset
|
617 def privateFile = file("private" + envName - "environment" + ".groovy") |
97
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
618 logger.info("loading environment $envFile.name") |
107
167745cd8af9
add support for private environment files in slurper format
smith@nwoca.org
parents:
106
diff
changeset
|
619 |
97
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
620 def envCfg = slurper.parse(envFile.toURL()) |
99 | 621 envCfg.merge(slurper.parse(developerPrivate)) |
175 | 622 envCfg.put('ssdt.projectid', gradle.ssdtProjectId) |
623 envCfg.put('ssdt.environment', gradle.env) | |
107
167745cd8af9
add support for private environment files in slurper format
smith@nwoca.org
parents:
106
diff
changeset
|
624 if (privateFile.exists()) { |
167745cd8af9
add support for private environment files in slurper format
smith@nwoca.org
parents:
106
diff
changeset
|
625 logger.info("loading private environment $privateFile") |
167745cd8af9
add support for private environment files in slurper format
smith@nwoca.org
parents:
106
diff
changeset
|
626 envCfg.merge(slurper.parse(privateFile.toURL())) |
167745cd8af9
add support for private environment files in slurper format
smith@nwoca.org
parents:
106
diff
changeset
|
627 } |
175 | 628 |
629 gradle.rootProject.getProperties().find { it.key.startsWith('environment') }.each { | |
105
f7b0f9d286b8
allow environment variables to be overridden on command line
smith@nwoca.org
parents:
104
diff
changeset
|
630 it.value.split(',').each { p -> |
175 | 631 def (k, v) = p.split('=') |
632 logger.info("$envName: overriding " + k + "=" + v + " in $it") | |
633 envCfg.put(k, v) | |
105
f7b0f9d286b8
allow environment variables to be overridden on command line
smith@nwoca.org
parents:
104
diff
changeset
|
634 } |
f7b0f9d286b8
allow environment variables to be overridden on command line
smith@nwoca.org
parents:
104
diff
changeset
|
635 } |
175 | 636 |
637 envOverrides.each { k, v -> | |
106
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
638 logger.info("$envName: overriding " + k + "=" + v) |
175 | 639 envCfg.put(k, v) |
106
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
640 } |
34bb1f5b9027
support setting env and overriding of specific properties
smith@nwoca.org
parents:
105
diff
changeset
|
641 environment.merge(envCfg) |
175 | 642 if (envName != 'environment') { |
643 gradle.ext[envName] = envCfg | |
644 environments << envName | |
99 | 645 } |
175 | 646 } |
97
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
647 environment.merge(slurper.parse(developerPrivate)) |
175 | 648 def deployMode = environment.deploy.mode ?: 'development' |
649 environments.each { gradle.ext[it].put('ssdt.deployment.mode', deployMode) } | |
99 | 650 environments << 'environment' |
101 | 651 gradle.ext.environments = environments |
105
f7b0f9d286b8
allow environment variables to be overridden on command line
smith@nwoca.org
parents:
104
diff
changeset
|
652 |
97
bdc17bcaf797
CM-130: add standard 'environment' handling for SSDt projects
smith@nwoca.org
parents:
96
diff
changeset
|
653 } |
166
9947c2c8ff44
switch to hash for layout of feature branches
Dave Smith <smith@nwoca.org>
parents:
165
diff
changeset
|
654 |
178 | 655 |
188
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
656 @ToString(includeNames=true) |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
657 class RuntimeInfo { |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
658 // OS memory in megabytes, zero if unknown |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
659 int systemMemory = 0 |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
660 int systemFreeMemory = 0 |
205 | 661 String javaVersion = System.getProperty('java.version') |
188
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
662 |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
663 RuntimeInfo() { |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
664 try { |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
665 new File('/proc/meminfo').readLines().findAll { it.startsWith 'Mem' }.collect { it.split(/\s+/) }.each { |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
666 int value = (it[1] as Long) / 1024 |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
667 if (it[0].startsWith('MemTotal')) { systemMemory = value } |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
668 if (it[0].startsWith('MemFree')) { systemFreeMemory = value } |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
669 } |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
670 |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
671 } catch (e) { } |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
672 |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
673 } |
200 | 674 |
675 void requireMemory(int megabytes) { | |
676 if (systemFreeMemory > 0 && systemFreeMemory < megabytes) { | |
677 throw new GradleException("insufficent free OS memory for this build (available: ${systemFreeMemory}m, required: ${megabytes}m)") | |
678 } | |
679 } | |
680 /** | |
681 * Returns maximum memory available upto the value specified. | |
682 */ | |
683 int maxMemory(int megabytes) { | |
684 if (systemFreeMemory) { | |
685 [systemFreeMemory,megabytes].min() | |
686 } else { megabytes } | |
687 | |
688 } | |
205 | 689 |
690 void requireJava(String version) { | |
691 | |
692 if ( version && !javaVersion.startsWith(version)) { | |
693 throw new GradleException("Requires java version $version but running under $javaVersion") | |
694 } | |
695 } | |
188
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
696 |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
697 } |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
698 |
711ef14d18d2
add object to determine available memory on linux
smith@nwoca.org
parents:
187
diff
changeset
|
699 |
215
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
700 @TupleConstructor |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
701 @Sortable |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
702 class Version { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
703 |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
704 Integer major = 0 |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
705 Integer minor = 0 |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
706 Integer patch = 0 |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
707 Boolean snapshot = true |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
708 |
219
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
709 Version nextMajor() { |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
710 new Version(major + 1, 0, 0, false) |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
711 } |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
712 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
713 Version nextMinor() { |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
714 if (snapshot) { |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
715 new Version(major, minor , 0,false) |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
716 } else { |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
717 new Version(major, minor + 1, 0,false) |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
718 } |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
719 } |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
720 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
721 Version nextPatch() { |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
722 new Version(major, minor, patch + 1,false) |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
723 } |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
724 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
725 Version nextSnapshot() { |
215
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
726 new Version(major, minor + 1, 0) |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
727 } |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
728 |
219
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
729 boolean isHotfix() { |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
730 !snapshot && patch > 0 |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
731 } |
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
732 |
215
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
733 String toString() { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
734 "${major}.${minor}.${patch}${snapshot ? '.SNAPSHOT' : ''}" |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
735 } |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
736 |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
737 } |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
738 |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
739 |
210 | 740 @ToString(includes=['name','shortName','buildVersion','imageId','deployName'],includeNames= true) |
183 | 741 class BranchInfo { |
178 | 742 def name |
179
f9087f939b0a
correct handling of hgflow file when in subproject
smith@nwoca.org
parents:
178
diff
changeset
|
743 def stream = "none" |
209 | 744 def buildNumber = "" |
211 | 745 def changeset = "" |
215
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
746 def version |
178 | 747 |
748 BranchInfo(name) { | |
749 this.name = name | |
750 if (!name) { | |
184 | 751 this.name = determineName() ?: '' |
178 | 752 } |
753 this.name = this.name.replace('@', '-') | |
754 determineStream() | |
209 | 755 buildNumber = System.getenv('bamboo_buildNumber') ?: "" |
211 | 756 changeset = System.getenv('bamboo_planRepository_revision') ?: "" |
757 } | |
209 | 758 |
214
0ca4f3c952b7
DEP-11: add depency-lock plugin and a resolver to supply dynamic version based on branch. Cleanup metrics includes
smith@nwoca.org
parents:
211
diff
changeset
|
759 String getDefaultDependencyStatus() { |
215
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
760 return isRelease() ? 'release' : 'integration' |
214
0ca4f3c952b7
DEP-11: add depency-lock plugin and a resolver to supply dynamic version based on branch. Cleanup metrics includes
smith@nwoca.org
parents:
211
diff
changeset
|
761 } |
215
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
762 |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
763 private boolean isRelease() { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
764 return stream in ['release', 'hotfix'] |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
765 } |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
766 |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
767 def getShortName() { |
209 | 768 def result = name.contains('/') ? name.split('/')[1] : name |
769 } | |
770 | |
215
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
771 String getBuildVersion() { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
772 def v = isRelease() ? shortName - "v": "" |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
773 return v |
209 | 774 } |
215
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
775 |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
776 def Version getVersion() { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
777 if (!version) { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
778 if (isRelease()) { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
779 version = new Version(*getBuildVersion().split('\\.')*.toInteger(), false) |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
780 } else { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
781 version = findSnapshotVersion() |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
782 } |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
783 } |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
784 return version |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
785 } |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
786 |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
787 def getImageId() { |
210 | 788 (buildVersion ?: shortName.take(25)) + (buildNumber ? "-${buildNumber}" : "-0") |
209 | 789 } |
178 | 790 |
210 | 791 def getDeployName() { |
792 (buildVersion ?: shortName.take(25)).toLowerCase().collectReplacements { | |
793 ('a'..'z').contains(it) || ('0'..'9').contains(it) || it == "-" ? null : '-' | |
794 } | |
795 } | |
796 | |
178 | 797 def getHash() { |
798 generateMD5(name) | |
799 } | |
800 def generateMD5(String s) { | |
801 def digest = java.security.MessageDigest.getInstance("MD5") | |
802 digest.update(s.bytes); | |
803 new BigInteger(1, digest.digest()).toString(16).padLeft(32, '0') | |
804 } | |
805 | |
215
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
806 private findSnapshotVersion() { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
807 def versions = "hg branches --closed".execute().text.split('\n').findAll { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
808 it.startsWith( 'release') || it.startsWith( 'hotfix') |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
809 }.collect { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
810 it.replaceAll('\\s+',' ').split(' ')[0].split('/')[1] - 'v' |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
811 }.collect { |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
812 new Version(*it.split('\\.')*.toInteger()) |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
813 }.sort { v1, v2 -> v2 <=> v1 } |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
814 |
219
efa545c6dd65
DEP-11: implement release process as gradle rule
smith@nwoca.org
parents:
216
diff
changeset
|
815 return versions ? versions.first().nextSnapshot() : new Version().nextSnapshot() |
215
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
816 |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
817 } |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
818 |
5bebb590b30e
DEP-11: determine project version based on branch
smith@nwoca.org
parents:
214
diff
changeset
|
819 |
178 | 820 def determineName() { |
183 | 821 try { |
822 def branch = "hg branch".execute().text.trim() | |
823 def rawParents = 'hg parents'.execute().text | |
824 def parent = rawParents.split('\n').find { it.startsWith("branch") }?.split(":")?.getAt(1)?.trim() | |
825 return parent ?: branch | |
826 } catch (e) { | |
184 | 827 ['.hg/branch', '../.hg/branch'].findResult { |
828 new File(it).exists() ? new File(it).text : null | |
183 | 829 } |
830 } | |
178 | 831 } |
832 | |
833 void determineStream() { | |
179
f9087f939b0a
correct handling of hgflow file when in subproject
smith@nwoca.org
parents:
178
diff
changeset
|
834 def flowConfig = new File('.hgflow').exists() ? new File('.hgflow') : new File('../.hgflow') |
f9087f939b0a
correct handling of hgflow file when in subproject
smith@nwoca.org
parents:
178
diff
changeset
|
835 if (flowConfig.exists()) { |
178 | 836 def flows = new Properties() |
179
f9087f939b0a
correct handling of hgflow file when in subproject
smith@nwoca.org
parents:
178
diff
changeset
|
837 flows.load(flowConfig.newReader()) |
178 | 838 flows.stringPropertyNames().each { |
839 if (!it.startsWith("[") && name.startsWith(flows.getProperty(it))) { | |
840 stream = it | |
841 } | |
842 } | |
843 } | |
844 } | |
845 | |
846 } | |
847 |