Mercurial > public > develkit
annotate init70-github.gradle @ 337:70a96f123a03
testing
author | marc_davis <davis@ssdt-ohio.org> |
---|---|
date | Tue, 30 May 2023 13:02:19 -0400 |
parents | 6258c89efe9e |
children | 0befe249fc6f |
rev | line source |
---|---|
336
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
1 import groovy.transform.Sortable |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
2 import groovy.transform.ToString |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
3 import groovy.transform.TupleConstructor |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
4 import org.gradle.util.GradleVersion |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
5 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
6 buildscript { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
7 repositories { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
8 maven { url 'https://docker.ssdt.io/artifactory/ssdt-repo' } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
9 maven { url 'https://docker.ssdt.io/artifactory/gradle-plugins' } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
10 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
11 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
12 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
13 // buildScan { termsOfServiceUrl = 'https://gradle.com/terms-of-service'; termsOfServiceAgree = 'yes' } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
14 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
15 final GradleVersion gradleCurrent = GradleVersion.current() |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
16 final GradleVersion gradleV70 = GradleVersion.version('7.2') |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
17 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
18 if (gradleCurrent < gradleV70) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
19 throw new RuntimeException("This init script requires Gradle version 7.2 or higher (bugs in earlier version of Gradle 7.0 and 7.1)") |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
20 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
21 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
22 gradle.ext.ssdtDevelkitLocation = gradle.ext.has('ssdtDevelkitLocation') ? gradle.ssdtDevelkitLocation : 'http://hg.ssdt-ohio.org/browse/public/develkit' |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
23 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
24 ant.property(file: System.getProperty('user.home') + "/.ssdt/private.properties") |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
25 gradle.ext.ivyUserDir = ant.properties['ivy.default.ivy.user.dir'] ?: System.getProperty('user.home') + "/.ivy2" |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
26 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
27 gradle.ext.ssdtProjectId = System.getenv('bamboo_project_id') ?: rootProject.name |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
28 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
29 gradle.addListener(new ArtifactoryGradleSettings()) |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
30 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
31 def hostname |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
32 try { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
33 hostname = "hostname".execute().text.toLowerCase().readLines().first() |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
34 } catch (e) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
35 hostname = 'unknown' |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
36 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
37 |
337 | 38 gradle.ext.bambooBuild = System.getenv().any { |
39 it.key.toLowerCase().contains('CI') | |
40 } | |
336
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
41 |
337 | 42 gradle.ext.bambooLocalBuild = false |
336
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
43 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
44 gradle.ext.bambooPlan = (System.getenv('BAMBOO_PLAN') ?: 'UNKNOWN-UNKNOWN-JOB1').split('-')[0..1].join('-') |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
45 logger.info "Bamboo plan: ${gradle.bambooPlan}" |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
46 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
47 gradle.ext.buildTimestamp = System.currentTimeMillis().toString().padLeft(14, '0') |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
48 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
49 gradle.ext.hgRepositoryUrl = "" |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
50 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
51 try { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
52 gradle.ext.hgRepositoryUrl = ("hg path".execute().text.split('=') ?: ['', ''])[1].trim() |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
53 } catch (e) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
54 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
55 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
56 def springModuleTranslator = [ |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
57 'spring-transaction': 'spring-tx', |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
58 'spring-web-servlet': 'spring-webmvc', |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
59 ].withDefault { it } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
60 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
61 gradle.ext.normalizeSpring = { DependencyResolveDetails details -> |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
62 if (details.requested.group == 'org.springframework' && details.requested.name.startsWith('org.springframework.')) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
63 def shortName = springModuleTranslator[details.requested.name.replace('org.springframework.', 'spring-').replace('.', '-')] |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
64 details.useTarget(group: 'org.springframework', name: shortName, version: details.requested.version) |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
65 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
66 if (details.requested.group == 'org.springframework.security' && details.requested.name.startsWith('org.springframework.')) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
67 def shortName = springModuleTranslator[details.requested.name.replace('org.springframework.', 'spring-').replace('.', '-')] |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
68 details.useTarget("${details.requested.group}:$shortName:${details.requested.version}") |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
69 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
70 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
71 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
72 gradle.ext.runtimeInfo = new RuntimeInfo() |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
73 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
74 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
75 if (System.env.DOCKER_HOST ) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
76 if (System.env.DOCKER_HOST.contains('tcp:')) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
77 gradle.ext.dockerEngineUrl = "https:${System.env.DOCKER_HOST?.minus('tcp:')}" |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
78 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
79 gradle.ext.dockerEngineUrl = System.env.DOCKER_HOST |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
80 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
81 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
82 setBranchInfo() |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
83 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
84 loadEnvironments() |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
85 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
86 gradle.environment.put('hgRepositoryUrl', gradle.hgRepositoryUrl) |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
87 gradle.environment.put('branchName', gradle.branch.name) |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
88 gradle.environment.put('branchStream', gradle.branch.stream) |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
89 gradle.environment.put('branchHash', gradle.branch.hash) |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
90 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
91 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
92 def cacheTimeout = 60 * 60 * 8 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
93 if (gradle.environment['dependencyTimeout']) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
94 cacheTimeout = gradle.environment['dependencyTimeout'] as Integer |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
95 println "setting changing dependency timeout to $cacheTimeout seconds" |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
96 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
97 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
98 gradle.ext.cacheTimeout = cacheTimeout |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
99 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
100 rootProject.ext.indyCapable = { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
101 boolean capable = true |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
102 try { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
103 Class.forName('java.lang.invoke.MethodHandle') |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
104 } catch (e) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
105 capable = false |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
106 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
107 capable && !rootProject.hasProperty('skipIndy') |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
108 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
109 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
110 rootProject.ext.useIndy = { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
111 boolean indy = false |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
112 // first, check if a system property activates indy support |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
113 indy |= System.hasProperty('indy') && Boolean.valueOf(System.getProperty('indy')) |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
114 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
115 // check ssdt environment for indy property. |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
116 indy |= (gradle.environment.indy) ? gradle.environment.indy.toBoolean() : false |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
117 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
118 // check if the main project has an extension property setting indy (-Pindy). |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
119 if (rootProject.hasProperty('indy')) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
120 indy = (Boolean.valueOf(rootProject.indy)) |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
121 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
122 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
123 // set the groovy runtime system property to ensure forked junit test will get the indy flag properly |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
124 if (indy && rootProject.indyCapable()) System.setProperty("groovy.target.indy", "true") |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
125 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
126 indy && rootProject.indyCapable() |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
127 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
128 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
129 println "Indy available: ${rootProject.indyCapable()} enabled: ${rootProject.useIndy()}" |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
130 |
337 | 131 if (gradle.bambooBuild) { |
132 | |
133 file('build-number.txt').text = "build.number=${gradle.branch.buildNumber ?: -1 }\n" | |
134 logger.info "applying SSDT artifactory Gradle Settings (bamboo: $gradle.bambooBuild host: $hostname)" | |
135 apply from: resources.text.fromInsecureUri("${gradle.ssdtDevelkitLocation}/artifactory70.gradle") | |
136 } | |
336
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
137 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
138 if (!rootProject.hasProperty('disableMetrics')) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
139 apply from: resources.text.fromInsecureUri("${gradle.ssdtDevelkitLocation}/metrics70.gradle") |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
140 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
141 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
142 rootProject.afterEvaluate { r -> |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
143 if (gradle.bambooBuild && r.hasProperty('requireJavaVersion')) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
144 gradle.runtimeInfo.requireJava( r.getProperty('requireJavaVersion') ) |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
145 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
146 if (!gradle.bambooBuild && !r.file('.idea/copyright/ODE.xml').exists() ) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
147 updateCopyrightProfile(r) |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
148 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
149 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
150 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
151 def findComponent(project, name) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
152 project.component.find { it.@name == name } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
153 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
154 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
155 wrapper { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
156 distributionType = org.gradle.api.tasks.wrapper.Wrapper.DistributionType.ALL |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
157 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
158 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
159 allprojects { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
160 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
161 configurations.all { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
162 resolutionStrategy.cacheChangingModulesFor gradle.cacheTimeout, 'seconds' |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
163 resolutionStrategy.cacheDynamicVersionsFor gradle.cacheTimeout, 'seconds' |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
164 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
165 configurations.all { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
166 resolutionStrategy.eachDependency { DependencyResolveDetails details -> |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
167 if (details.requested.group == 'org.ssdt_ohio' && !details.requested.version ) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
168 details.useVersion( "latest.${gradle.branch.defaultDependencyStatus}" ) |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
169 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
170 if (details.requested.version == 'default') { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
171 details.useVersion("latest.${gradle.branch.defaultDependencyStatus}" ) |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
172 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
173 if (project.hasProperty("overrideCommon")) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
174 if (details.requested.group == 'org.ssdt_ohio' && details.requested.name.contains('ssdt.common.')) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
175 details.useVersion(project.overrideCommon) |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
176 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
177 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
178 if (project.hasProperty("overrideVui")) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
179 if (details.requested.group == 'org.ssdt_ohio' && details.requested.name.startsWith('vui.')) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
180 details.useVersion(project.overrideVui) |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
181 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
182 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
183 if (project.hasProperty("overrideUsasCore")) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
184 if (details.requested.group == 'org.ssdt_ohio' && details.requested.name.startsWith('usas.') && !details.requested.name.startsWith('usas.vui')) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
185 details.useVersion(project.overrideUsasCore) |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
186 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
187 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
188 if (project.hasProperty("overrideUspsCore")) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
189 if (details.requested.group == 'org.ssdt_ohio' && details.requested.name.startsWith('usps.') && !details.requested.name.startsWith('usps.vui')) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
190 details.useVersion(project.overrideUspsCore) |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
191 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
192 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
193 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
194 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
195 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
196 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
197 task cleanLocal(description: "removes all artifacts from developer's local repository") { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
198 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
199 doLast { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
200 def local = project.repositories.find { it.name == 'local' } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
201 if (local) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
202 logger.info "removing local repo: $it" |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
203 new File(System.properties['user.home'] + "/.ssdt/local-repo").deleteDir() |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
204 def localDir = new File(gradle.ivyUserDir + "/local") |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
205 localDir.deleteDir() |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
206 logger.info "verifying removal of local repo" |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
207 if (localDir.exists()) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
208 throw new org.gradle.api.GradleException("Unable to clean ${localDir}. Files may be locked by another process.") |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
209 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
210 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
211 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
212 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
213 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
214 cleanLocal.onlyIf { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
215 project.repositories.any { it.name == 'local' } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
216 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
217 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
218 project.ext.previousBuildenv = project.file('build/buildenv.txt').exists() ? project.file('build/buildenv.txt').text : 'none' |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
219 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
220 tasks.addRule("Pattern: <environment>As[Test]Properties: Generates <environment>.properties as resource or Test resource") { String taskName -> |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
221 if ((taskName - 'Test').endsWith("AsProperties") && !taskName.startsWith('clean')) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
222 // def t = taskName.contains('Test') ? processTestResources.destinationDir : processResources.destinationDir |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
223 def t = taskName.contains('Test') ? sourceSets.test.output.resourcesDir : sourceSets.main.output.resourcesDir |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
224 def e = (taskName - 'Test' - 'AsProperties').capitalize() |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
225 task(taskName) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
226 ext.outputDir = t |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
227 ext.propertyFile = "${e.toLowerCase()}.properties" |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
228 ext.buildenv = project.file('build/buildenv.txt') |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
229 inputs.files project.file("../environment${e}.groovy"), project.file("../private${e}.groovy"), project.file('../private.properties') |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
230 outputs.files new File(outputDir,propertyFile), buildenv |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
231 outputs.upToDateWhen { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
232 gradle.env == project.previousBuildenv && outputs.getFiles().every { it.exists() } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
233 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
234 doLast { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
235 t.mkdirs() |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
236 outputDir.mkdirs() |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
237 buildenv.text = gradle.env |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
238 def ps = gradle."environment${e}".toProperties() |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
239 ps['ssdt.project'] = project.name |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
240 def pf = new File(outputDir,propertyFile) |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
241 ext.outputPropertyFile = pf |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
242 ps.store(pf.newOutputStream(), "by $taskName of $this") |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
243 def l = pf.readLines().sort() |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
244 pf.text = l.join('\n').replaceAll("\\.PARENT","") |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
245 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
246 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
247 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
248 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
249 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
250 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
251 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
252 subprojects { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
253 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
254 it.ext.environment = gradle.environment |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
255 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
256 dependencyLocking { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
257 if (gradle.branch.isRelease()) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
258 lockAllConfigurations() |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
259 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
260 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
261 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
262 task("releaseLock" ) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
263 description = "Create release dependencies Lock files" |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
264 doFirst { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
265 assert gradle.startParameter.writeDependencyLocks : "must include --write-locks or --update-locks option when locking dependencies" |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
266 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
267 doLast { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
268 if (!gradle.branch.isRelease()) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
269 throw new BuildCancelledException("releaseLock is only valid on release or hotfix branch.") |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
270 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
271 configurations.findAll { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
272 it.canBeResolved |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
273 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
274 .each { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
275 it.resolve() |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
276 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
277 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
278 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
279 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
280 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
281 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
282 rootProject.afterEvaluate { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
283 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
284 tasks.addRule("release{Major|Minor|Patch|n.n.n}: create release branch or update release Lock file") { String taskName -> |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
285 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
286 def matcher = (taskName =~ /^release(Major|Minor|Patch|\d{1,3}\.\d{1,3}\.\d{1,3})$/) |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
287 if (matcher.matches()) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
288 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
289 task('doReleaseBranch') { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
290 ext.requested = matcher[0][1].toLowerCase() |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
291 doLast { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
292 def releaseVersion = determineReleaseVersion(requested) |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
293 def releaseStream = releaseVersion.isHotfix() ? 'hotfix' : 'release' |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
294 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
295 println "-" * 60 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
296 println "Preparing to create branch\n" |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
297 println "\tproject:\t${gradle.rootProject.name}" |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
298 println "\tcurrent:\t${gradle.branch} ($gradle.branch.version)" |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
299 println() |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
300 println "\ttype :\t${releaseStream.toUpperCase()}" |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
301 println "\tversion:\t${releaseVersion}" |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
302 println "\ttarget :\t${releaseStream}/v${releaseVersion}" |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
303 println() |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
304 println("-" * 60) |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
305 println "DRY RUN".center(60) |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
306 println("-" * 60) |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
307 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
308 println "hg flow ${releaseStream} start v${releaseVersion} --dirty --dry-run".execute().text |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
309 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
310 println "-" * 60 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
311 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
312 if (!confirmPrompt("Continue?")) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
313 throw new BuildCancelledException("release branching canceled by user request") |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
314 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
315 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
316 println "hg flow ${releaseStream} start v${releaseVersion} --dirty".execute().text |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
317 println "hg update ${releaseStream}/v${releaseVersion}".execute().text |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
318 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
319 setBranchInfo() |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
320 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
321 println "-" * 60 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
322 println " Be sure to execute 'releaseLock' task to update the release.lock file before proceeding." |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
323 println "-" * 60 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
324 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
325 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
326 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
327 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
328 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
329 def branchTasks = ['doReleaseBranch'] |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
330 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
331 task(taskName) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
332 dependsOn branchTasks |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
333 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
334 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
335 branchTasks.tail().inject(branchTasks.head()) { a, b -> |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
336 tasks[b].mustRunAfter a |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
337 b |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
338 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
339 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
340 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
341 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
342 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
343 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
344 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
345 private static String readLine(String message, String defaultValue = null) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
346 String _message = "> $message" + (defaultValue ? " [$defaultValue] " : "") |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
347 if (System.console()) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
348 return System.console().readLine(_message) ?: defaultValue |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
349 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
350 println "$_message " |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
351 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
352 System.in.newReader().readLine() ?: defaultValue |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
353 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
354 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
355 private static boolean confirmPrompt(String message, boolean defaultValue = false) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
356 String defaultStr = defaultValue ? 'Y' : 'n' |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
357 String consoleVal = readLine("${message} (Y|n)", defaultStr) |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
358 if (consoleVal) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
359 return consoleVal.toLowerCase().startsWith('y') |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
360 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
361 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
362 defaultValue |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
363 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
364 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
365 private Version determineReleaseVersion(String requested) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
366 if (requested == 'major') { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
367 return gradle.branch.version.nextMajor() |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
368 } else if (requested == 'minor') { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
369 return gradle.branch.version.nextMinor() |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
370 } else if (requested == 'patch') { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
371 return gradle.branch.version.nextPatch() |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
372 } else { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
373 return new Version(*requested.split(/\./)*.toInteger(), false) |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
374 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
375 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
376 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
377 class ArtifactoryGradleSettings extends BuildAdapter implements BuildListener { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
378 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
379 def void projectsEvaluated(Gradle gradle) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
380 def ssdtArtifactory = 'https://docker.ssdt.io/artifactory' |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
381 Project root = gradle.getRootProject() |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
382 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
383 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
384 def branchVersioning = gradle.rootProject.version == 'unspecified' |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
385 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
386 root.allprojects { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
387 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
388 def thisProject = delegate |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
389 thisProject.status = 'integration' |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
390 if (gradle.branchStream) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
391 if (branchVersioning) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
392 thisProject.version = gradle.branch.version |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
393 thisProject.status = gradle.branch.defaultDependencyStatus |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
394 } else { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
395 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
396 thisProject.status = 'integration' |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
397 def fixupVersion = thisProject.version - ".SNAPSHOT" |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
398 if (gradle.branchStream == 'feature') { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
399 fixupVersion = fixupVersion + ".SNAPSHOT" |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
400 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
401 if (gradle.branchStream == 'develop') { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
402 fixupVersion = fixupVersion + ".SNAPSHOT" |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
403 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
404 if (gradle.branchStream in ['production', 'release', 'hotfix']) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
405 thisProject.status = 'release' |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
406 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
407 thisProject.version = fixupVersion |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
408 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
409 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
410 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
411 repositories { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
412 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
413 if (!gradle.bambooBuild || gradle.bambooLocalBuild) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
414 ivy { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
415 name = 'local' |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
416 artifactPattern gradle.ivyUserDir + '/local/[artifact]-[revision](-[classifier]).[ext]' |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
417 ivyPattern gradle.ivyUserDir + "/local/[module]-ivy-[revision].xml" |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
418 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
419 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
420 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
421 if (!gradle.bambooBuild) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
422 mavenLocal() |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
423 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
424 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
425 if (gradle.branchStream == 'feature') { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
426 ivy { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
427 name = 'ssdt-branches' |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
428 url = "${ssdtArtifactory}/ssdt-branches/${gradle.branchHash}/" |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
429 patternLayout() { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
430 artifact "[organization]/[module]/[revision]/[module]-[revision](-[classifier]).[ext]" |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
431 ivy "[organization]/[module]/ivy-[revision].xml" |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
432 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
433 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
434 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
435 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
436 ivy { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
437 name = 'ssdt-releases' |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
438 url = "${ssdtArtifactory}/ssdt-releases" |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
439 patternLayout() { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
440 artifact "[organization]/[module]/[revision]/[module]-[revision](-[classifier]).[ext]" |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
441 artifact "[organization]/[module]/[revision]/[artifact]-[revision](-[classifier]).[ext]" |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
442 ivy "[organization]/[module]/ivy-[revision].xml" |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
443 m2compatible = true |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
444 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
445 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
446 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
447 ivy { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
448 name = 'ssdt-snapshots' |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
449 url = "${ssdtArtifactory}/ssdt-snapshots" |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
450 patternLayout() { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
451 artifact "[organization]/[module]/[revision]/[module]-[revision](-[classifier]).[ext]" |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
452 artifact "[organization]/[module]/[revision]/[artifact]-[revision](-[classifier]).[ext]" |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
453 ivy "[organization]/[module]/ivy-[revision].xml" |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
454 m2compatible = true |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
455 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
456 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
457 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
458 maven { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
459 name = 'ssdt-repository' |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
460 url = "${ssdtArtifactory}/repository" |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
461 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
462 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
463 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
464 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
465 def remoteRepos = thisProject.repositories.findAll { it.hasProperty('url') && !(it.name.toLowerCase().contains('local') || it.url.toString().contains('ssdt')) } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
466 if (remoteRepos) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
467 logger.warn "WARNING: Remote repositories configured for $thisProject:\n" + remoteRepos.collect { "\t$it.name $it.url " }.join('\n') + "\n Moved to lowest priority..." |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
468 remoteRepos.each { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
469 thisProject.repositories.remove(it) |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
470 thisProject.repositories.addLast(it) |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
471 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
472 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
473 logger.info "$thisProject configured repositories:\n" + thisProject.repositories.collect {"\t$it.name ${it.hasProperty('url') ? it.url : '' }" }.join('\n') |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
474 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
475 /* |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
476 * Add a new task for local repos that declare an Ivy publish configuration |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
477 * This is a workaround for how the older versions handled the publishLocal |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
478 * task and the updateArchive option that was removed in gradle 7.0 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
479 */ |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
480 if (thisProject.repositories.find { it.name == 'local' } && thisProject.getTasksByName('publishIvyPublicationToLocalRepository', false)) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
481 thisProject.tasks.create("publishLocal") { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
482 description = "Publishes this projects artifacts to developer's local repository" |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
483 dependsOn = ["publishIvyPublicationToLocalRepository"] |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
484 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
485 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
486 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
487 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
488 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
489 root.subprojects { p -> |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
490 if (root.useIndy()) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
491 println "enabling indy compilation on $p" |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
492 [compileGroovy.groovyOptions, compileTestGroovy.groovyOptions]*.with { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
493 optimizationOptions = [indy: true] |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
494 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
495 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
496 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
497 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
498 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
499 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
500 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
501 task showEnvironments { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
502 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
503 doLast { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
504 println "Defined environments: $gradle.environments" |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
505 gradle.environments.each { e -> |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
506 println "\n $e:" |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
507 gradle.getProperty(e).flatten().sort { it.key }.each { k, v -> |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
508 println String.format(' %25s = %s', k, k.contains('password') ? "********" : v) |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
509 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
510 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
511 if (logger.isInfoEnabled()) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
512 println "System properties:" |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
513 System.properties.each { println " $it" } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
514 println "env variables:" |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
515 System.getenv().each { println " $it" } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
516 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
517 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
518 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
519 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
520 def loadEnvironments() { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
521 def developerPrivate = new Properties() |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
522 if (file('private.properties').exists()) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
523 developerPrivate.load(file('private.properties').newReader()) |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
524 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
525 def envOverrides = [:] |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
526 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
527 if (!hasProperty('env')) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
528 gradle.ext.env = developerPrivate.env ?: 'dev' |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
529 } else { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
530 def values = getProperty('env').split(',') |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
531 gradle.ext.env = values.first() |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
532 values.tail().each { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
533 def (k, v) = it.split('=') |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
534 envOverrides.put(k, v) |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
535 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
536 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
537 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
538 println "Environment is: $gradle.env ($envOverrides)" |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
539 def slurper = new ConfigSlurper(gradle.env) |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
540 slurper.setBinding(['gradle': gradle]) |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
541 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
542 def environment = slurper.parse( |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
543 '''deploy.mode="production" |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
544 environments { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
545 test { deploy.mode="test" } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
546 dev { deploy.mode="development"} |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
547 }''') |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
548 if (developerPrivate['deploy.mode']) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
549 environment.put('deploy.mode', developerPrivate['deploy.mode']) |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
550 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
551 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
552 environment.put('branchInfo',gradle.branch) |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
553 environment.put('branchVersion',gradle.branch.version.toString()) |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
554 def environments = [] |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
555 gradle.ext.environment = environment |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
556 file('.').listFiles().findAll { it.name ==~ /^environment.*\.groovy$/ }.sort { it.name }.each { envFile -> |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
557 def envName = envFile.name - '.groovy' |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
558 def privateFile = file("private" + envName - "environment" + ".groovy") |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
559 logger.info("loading environment $envFile.name") |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
560 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
561 def envCfg = slurper.parse(envFile.toURL()) |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
562 envCfg.merge(slurper.parse(developerPrivate)) |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
563 envCfg.put('ssdt.projectid', gradle.ssdtProjectId) |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
564 envCfg.put('ssdt.environment', gradle.env) |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
565 if (privateFile.exists()) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
566 logger.info("loading private environment $privateFile") |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
567 envCfg.merge(slurper.parse(privateFile.toURL())) |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
568 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
569 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
570 gradle.rootProject.getProperties().find { it.key.startsWith('environment') }.each { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
571 it.value.split(',').each { p -> |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
572 def (k, v) = p.split('=') |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
573 logger.info("$envName: overriding " + k + "=" + v + " in $it") |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
574 envCfg.put(k, v) |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
575 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
576 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
577 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
578 envOverrides.each { k, v -> |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
579 logger.info("$envName: overriding " + k + "=" + v) |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
580 envCfg.put(k, v) |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
581 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
582 environment.merge(envCfg) |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
583 if (envName != 'environment') { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
584 gradle.ext[envName] = envCfg |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
585 environments << envName |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
586 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
587 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
588 environment.merge(slurper.parse(developerPrivate)) |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
589 def deployMode = environment.deploy.mode ?: 'development' |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
590 environments.each { gradle.ext[it].put('ssdt.deployment.mode', deployMode) } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
591 environments << 'environment' |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
592 gradle.ext.environments = environments |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
593 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
594 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
595 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
596 def updateCopyrightProfile(Project r) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
597 r.file('.idea/copyright').mkdirs() |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
598 r.file('.idea/copyright/ODE.xml').text = |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
599 '''<component name="CopyrightManager"> |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
600 <copyright> |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
601 <option name="notice" value="Copyright (c) &#36;today.year. Ohio Department of Education. - All Rights Reserved. Unauthorized copying of this file, in any medium, is strictly prohibited. Written by the State Software Development Team (http://ssdt.oecn.k12.oh.us/) " /> |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
602 <option name="myName" value="ODE" /> |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
603 </copyright> |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
604 </component>''' |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
605 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
606 r.file('.idea/copyright/profiles_settings.xml').text = |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
607 '''<component name="CopyrightManager"> |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
608 <settings default="ODE" /> |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
609 </component>''' |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
610 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
611 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
612 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
613 @ToString(includeNames=true) |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
614 class RuntimeInfo { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
615 // OS memory in megabytes, zero if unknown |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
616 int systemMemory = 0 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
617 int systemFreeMemory = 0 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
618 String javaVersion = System.getProperty('java.version') |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
619 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
620 RuntimeInfo() { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
621 try { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
622 new File('/proc/meminfo').readLines().findAll { it.startsWith 'Mem' }.collect { it.split(/\s+/) }.each { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
623 int value = (it[1] as Long) / 1024 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
624 if (it[0].startsWith('MemTotal')) { systemMemory = value } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
625 if (it[0].startsWith('MemFree')) { systemFreeMemory = value } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
626 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
627 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
628 } catch (e) { } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
629 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
630 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
631 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
632 void requireMemory(int megabytes) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
633 if (systemFreeMemory > 0 && systemFreeMemory < megabytes) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
634 println "WARNING: potentially insufficent OS memory for this build" |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
635 // throw new GradleException("insufficent free OS memory for this build (available: ${systemFreeMemory}m, required: ${megabytes}m)") |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
636 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
637 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
638 /** |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
639 * Returns maximum memory available upto the value specified. |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
640 */ |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
641 int maxMemory(int megabytes) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
642 if (systemFreeMemory) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
643 [systemFreeMemory,megabytes].min() |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
644 } else { megabytes } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
645 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
646 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
647 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
648 void requireJava(String version) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
649 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
650 if ( version && !javaVersion.startsWith(version)) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
651 throw new GradleException("Requires java version $version but running under $javaVersion") |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
652 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
653 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
654 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
655 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
656 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
657 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
658 @TupleConstructor |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
659 @Sortable |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
660 class Version { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
661 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
662 Integer major = 0 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
663 Integer minor = 0 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
664 Integer patch = 0 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
665 Boolean snapshot = true |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
666 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
667 Integer previousMinor = 0 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
668 Integer previousPatch = 0 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
669 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
670 Version nextMajor() { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
671 new Version(major + 1, 0, 0, false) |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
672 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
673 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
674 Version nextMinor() { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
675 if (snapshot) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
676 new Version(major, minor , 0,false) |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
677 } else { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
678 new Version(major, minor + 1, 0,false) |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
679 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
680 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
681 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
682 Version nextPatch() { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
683 if (snapshot) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
684 new Version(major, previousMinor, previousPatch + 1,false) |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
685 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
686 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
687 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
688 Version nextSnapshot() { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
689 new Version(major, minor + 1, 0,true,minor,patch) |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
690 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
691 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
692 boolean isHotfix() { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
693 !snapshot && patch > 0 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
694 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
695 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
696 String toString() { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
697 "${major}.${minor}.${patch}${snapshot ? '.SNAPSHOT' : ''}" |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
698 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
699 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
700 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
701 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
702 void setBranchInfo() { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
703 gradle.ext.branch = new BranchInfo(System.getenv('bamboo_planRepository_branch')) |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
704 gradle.ext.branchName = gradle.branch.name |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
705 gradle.ext.branchStream = gradle.branch.stream |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
706 gradle.ext.branchHash = gradle.branch.hash |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
707 println "${gradle.hgRepositoryUrl} ${gradle.branch} ${gradle.branch.version}" |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
708 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
709 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
710 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
711 @ToString(includes=['name','shortName','buildVersion','imageId','deployName'],includeNames= true) |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
712 class BranchInfo { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
713 def name |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
714 def stream = "none" |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
715 def buildNumber = "" |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
716 def changeset = "" |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
717 def version |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
718 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
719 BranchInfo(name) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
720 this.name = name |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
721 if (!name) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
722 this.name = determineName() ?: '' |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
723 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
724 this.name = this.name.replace('@', '-') |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
725 determineStream() |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
726 buildNumber = System.getenv('bamboo_buildNumber') ?: "" |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
727 changeset = System.getenv('bamboo_planRepository_revision') ?: "" |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
728 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
729 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
730 String getDefaultDependencyStatus() { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
731 return isRelease() ? 'release' : 'integration' |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
732 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
733 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
734 private boolean isRelease() { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
735 return stream in ['release', 'hotfix'] |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
736 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
737 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
738 def getShortName() { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
739 def result = name.contains('/') ? name.split('/')[1] : name |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
740 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
741 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
742 String getBuildVersion() { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
743 def v = isRelease() ? shortName - "v": "" |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
744 return v |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
745 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
746 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
747 def Version getVersion() { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
748 if (!version) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
749 if (isRelease()) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
750 version = new Version(*getBuildVersion().split('\\.')*.toInteger(), false) |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
751 } else { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
752 version = findSnapshotVersion() |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
753 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
754 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
755 return version |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
756 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
757 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
758 def getImageId() { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
759 (buildVersion ?: shortName.take(25)) + (buildNumber ? "-${buildNumber}" : "-0") |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
760 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
761 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
762 def getDeployName() { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
763 (buildVersion ?: shortName.take(25)).toLowerCase().collectReplacements { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
764 ('a'..'z').contains(it) || ('0'..'9').contains(it) || it == "-" ? null : '-' |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
765 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
766 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
767 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
768 def getHash() { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
769 generateMD5(name) |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
770 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
771 def generateMD5(String s) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
772 def digest = java.security.MessageDigest.getInstance("MD5") |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
773 digest.update(s.bytes); |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
774 new BigInteger(1, digest.digest()).toString(16).padLeft(32, '0') |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
775 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
776 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
777 private Version findSnapshotVersion() { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
778 println "findSnapshotVersion()" |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
779 try { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
780 def repositoryUrl = System.getenv('bamboo_planRepository_repositoryUrl') |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
781 if (repositoryUrl) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
782 println "git pull $repositoryUrl".execute().text |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
783 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
784 def versions = "git tag".execute().text.split("\n") |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
785 .findAll { it != null || it != "" } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
786 .collect { it.replace("v", "") } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
787 .collect { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
788 Version v = null |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
789 try { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
790 v = new Version(*it.split('\\.')*.toInteger()) |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
791 return v |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
792 } catch (ignored) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
793 //non semver tag found, ignoring |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
794 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
795 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
796 .sort { v1, v2 -> v2 <=> v1 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
797 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
798 def branches = "git branch --remote".execute().text.split("\n") |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
799 .findAll { it.contains('release') || it.contains('hotfix') } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
800 .collect { it.replaceAll('\\s+', ' ').split('/').last() - 'v' } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
801 .collect { new Version(*it.split('\\.')*.toInteger()) } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
802 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
803 def results = (branches + versions).sort { v1, v2 -> v2 <=> v1 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
804 if (results.isEmpty()) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
805 return new Version().nextSnapshot() |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
806 } else { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
807 return results.first().nextSnapshot() |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
808 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
809 } catch (ex) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
810 println ex |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
811 return new Version().nextSnapshot() |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
812 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
813 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
814 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
815 def determineName() { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
816 try { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
817 def branch = "git branch --show-current".execute().text.trim() |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
818 return branch |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
819 } catch (ignored) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
820 return null |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
821 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
822 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
823 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
824 /** |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
825 * Try to determine the stream based on hgflow configs |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
826 * git-flow doesn't have a local config, so we may need to keep this |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
827 * file around just for the comparison. |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
828 * |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
829 * A new name for the file could help as well? |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
830 */ |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
831 void determineStream() { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
832 def flowConfig = new File('.hgflow').exists() ? new File('.hgflow') : new File('../.hgflow') |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
833 if (flowConfig.exists()) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
834 def flows = new Properties() |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
835 flows.load(flowConfig.newReader()) |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
836 flows.stringPropertyNames().each { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
837 if (!it.startsWith("[") && name.startsWith(flows.getProperty(it))) { |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
838 stream = it |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
839 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
840 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
841 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
842 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
843 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
844 } |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
845 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
846 |
6258c89efe9e
add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff
changeset
|
847 |