annotate init70-github.gradle @ 347:1d55012b6af3

add println to see env props
author Marc Davis <marc.davis@mcoecn.org>
date Tue, 25 Jul 2023 15:20:58 -0400
parents 3504897af0f5
children aa5e8be335d6
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
339
21b015e926ff testing
marc_davis <davis@ssdt-ohio.org>
parents: 338
diff changeset
38 //Determine if the build is a CI build.
337
70a96f123a03 testing
marc_davis <davis@ssdt-ohio.org>
parents: 336
diff changeset
39 gradle.ext.bambooBuild = System.getenv().any {
347
1d55012b6af3 add println to see env props
Marc Davis <marc.davis@mcoecn.org>
parents: 346
diff changeset
40 println it.toString()
339
21b015e926ff testing
marc_davis <davis@ssdt-ohio.org>
parents: 338
diff changeset
41 it.key.toLowerCase().contains('ci') ||
21b015e926ff testing
marc_davis <davis@ssdt-ohio.org>
parents: 338
diff changeset
42 it.key.toLowerCase().contains('github')
337
70a96f123a03 testing
marc_davis <davis@ssdt-ohio.org>
parents: 336
diff changeset
43 }
336
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
44
337
70a96f123a03 testing
marc_davis <davis@ssdt-ohio.org>
parents: 336
diff changeset
45 gradle.ext.bambooLocalBuild = false
336
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.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
48 logger.info "Bamboo plan: ${gradle.bambooPlan}"
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
49
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
50 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
51
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
52 gradle.ext.hgRepositoryUrl = ""
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
53
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
54 try {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
55 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
56 } catch (e) {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
57 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
58
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
59 def springModuleTranslator = [
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
60 'spring-transaction': 'spring-tx',
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
61 'spring-web-servlet': 'spring-webmvc',
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
62 ].withDefault { it }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
63
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
64 gradle.ext.normalizeSpring = { DependencyResolveDetails details ->
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
65 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
66 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
67 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
68 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
69 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
70 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
71 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
72 }
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 gradle.ext.runtimeInfo = new RuntimeInfo()
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
76
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
77
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
78 if (System.env.DOCKER_HOST ) {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
79 if (System.env.DOCKER_HOST.contains('tcp:')) {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
80 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
81 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
82 gradle.ext.dockerEngineUrl = System.env.DOCKER_HOST
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
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
85 setBranchInfo()
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
86
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
87 loadEnvironments()
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
88
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
89 gradle.environment.put('hgRepositoryUrl', gradle.hgRepositoryUrl)
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
90 gradle.environment.put('branchName', gradle.branch.name)
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
91 gradle.environment.put('branchStream', gradle.branch.stream)
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
92 gradle.environment.put('branchHash', gradle.branch.hash)
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
93
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
94
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
95 def cacheTimeout = 60 * 60 * 8
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
96 if (gradle.environment['dependencyTimeout']) {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
97 cacheTimeout = gradle.environment['dependencyTimeout'] as Integer
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
98 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
99 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
100
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
101 gradle.ext.cacheTimeout = cacheTimeout
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
102
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
103 rootProject.ext.indyCapable = {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
104 boolean capable = true
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
105 try {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
106 Class.forName('java.lang.invoke.MethodHandle')
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
107 } catch (e) {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
108 capable = false
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 capable && !rootProject.hasProperty('skipIndy')
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
111 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
112
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
113 rootProject.ext.useIndy = {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
114 boolean indy = false
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
115 // 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
116 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
117
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
118 // check ssdt environment for indy property.
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
119 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
120
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
121 // 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
122 if (rootProject.hasProperty('indy')) {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
123 indy = (Boolean.valueOf(rootProject.indy))
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
124 }
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 // 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
127 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
128
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
129 indy && rootProject.indyCapable()
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
130 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
131
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
132 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
133
337
70a96f123a03 testing
marc_davis <davis@ssdt-ohio.org>
parents: 336
diff changeset
134 if (gradle.bambooBuild) {
70a96f123a03 testing
marc_davis <davis@ssdt-ohio.org>
parents: 336
diff changeset
135
70a96f123a03 testing
marc_davis <davis@ssdt-ohio.org>
parents: 336
diff changeset
136 file('build-number.txt').text = "build.number=${gradle.branch.buildNumber ?: -1 }\n"
70a96f123a03 testing
marc_davis <davis@ssdt-ohio.org>
parents: 336
diff changeset
137 logger.info "applying SSDT artifactory Gradle Settings (bamboo: $gradle.bambooBuild host: $hostname)"
70a96f123a03 testing
marc_davis <davis@ssdt-ohio.org>
parents: 336
diff changeset
138 apply from: resources.text.fromInsecureUri("${gradle.ssdtDevelkitLocation}/artifactory70.gradle")
70a96f123a03 testing
marc_davis <davis@ssdt-ohio.org>
parents: 336
diff changeset
139 }
336
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 if (!rootProject.hasProperty('disableMetrics')) {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
142 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
143 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
144
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
145 rootProject.afterEvaluate { r ->
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
146 if (gradle.bambooBuild && r.hasProperty('requireJavaVersion')) {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
147 gradle.runtimeInfo.requireJava( r.getProperty('requireJavaVersion') )
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 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
150 updateCopyrightProfile(r)
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
151 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
152 }
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 def findComponent(project, name) {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
155 project.component.find { it.@name == name }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
156 }
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 wrapper {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
159 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
160 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
161
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
162 allprojects {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
163
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
164 configurations.all {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
165 resolutionStrategy.cacheChangingModulesFor gradle.cacheTimeout, 'seconds'
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
166 resolutionStrategy.cacheDynamicVersionsFor gradle.cacheTimeout, 'seconds'
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
167 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
168 configurations.all {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
169 resolutionStrategy.eachDependency { DependencyResolveDetails details ->
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
170 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
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 (details.requested.version == 'default') {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
174 details.useVersion("latest.${gradle.branch.defaultDependencyStatus}" )
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
175 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
176 if (project.hasProperty("overrideCommon")) {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
177 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
178 details.useVersion(project.overrideCommon)
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
179 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
180 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
181 if (project.hasProperty("overrideVui")) {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
182 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
183 details.useVersion(project.overrideVui)
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
184 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
185 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
186 if (project.hasProperty("overrideUsasCore")) {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
187 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
188 details.useVersion(project.overrideUsasCore)
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
189 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
190 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
191 if (project.hasProperty("overrideUspsCore")) {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
192 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
193 details.useVersion(project.overrideUspsCore)
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 }
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
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
200 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
201
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
202 doLast {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
203 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
204 if (local) {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
205 logger.info "removing local repo: $it"
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
206 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
207 def localDir = new File(gradle.ivyUserDir + "/local")
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
208 localDir.deleteDir()
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
209 logger.info "verifying removal of local repo"
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
210 if (localDir.exists()) {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
211 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
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 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
215 }
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 cleanLocal.onlyIf {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
218 project.repositories.any { it.name == 'local' }
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
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
221 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
222
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
223 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
224 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
225 // 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
226 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
227 def e = (taskName - 'Test' - 'AsProperties').capitalize()
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
228 task(taskName) {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
229 ext.outputDir = t
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
230 ext.propertyFile = "${e.toLowerCase()}.properties"
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
231 ext.buildenv = project.file('build/buildenv.txt')
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
232 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
233 outputs.files new File(outputDir,propertyFile), buildenv
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
234 outputs.upToDateWhen {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
235 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
236 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
237 doLast {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
238 t.mkdirs()
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
239 outputDir.mkdirs()
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
240 buildenv.text = gradle.env
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
241 def ps = gradle."environment${e}".toProperties()
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
242 ps['ssdt.project'] = project.name
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
243 def pf = new File(outputDir,propertyFile)
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
244 ext.outputPropertyFile = pf
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
245 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
246 def l = pf.readLines().sort()
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
247 pf.text = l.join('\n').replaceAll("\\.PARENT","")
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
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
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
255 subprojects {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
256
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
257 it.ext.environment = gradle.environment
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
258
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
259 dependencyLocking {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
260 if (gradle.branch.isRelease()) {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
261 lockAllConfigurations()
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
262 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
263 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
264
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
265 task("releaseLock" ) {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
266 description = "Create release dependencies Lock files"
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
267 doFirst {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
268 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
269 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
270 doLast {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
271 if (!gradle.branch.isRelease()) {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
272 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
273 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
274 configurations.findAll {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
275 it.canBeResolved
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 .each {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
278 it.resolve()
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
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
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
285 rootProject.afterEvaluate {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
286
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
287 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
288
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
289 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
290 if (matcher.matches()) {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
291
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
292 task('doReleaseBranch') {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
293 ext.requested = matcher[0][1].toLowerCase()
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
294 doLast {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
295 def releaseVersion = determineReleaseVersion(requested)
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
296 def releaseStream = releaseVersion.isHotfix() ? 'hotfix' : 'release'
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
297
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
298 println "-" * 60
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
299 println "Preparing to create branch\n"
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
300 println "\tproject:\t${gradle.rootProject.name}"
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
301 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
302 println()
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
303 println "\ttype :\t${releaseStream.toUpperCase()}"
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
304 println "\tversion:\t${releaseVersion}"
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
305 println "\ttarget :\t${releaseStream}/v${releaseVersion}"
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
306 println()
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
307 println("-" * 60)
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
308 println "DRY RUN".center(60)
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
309 println("-" * 60)
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
310
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
311 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
312
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
313 println "-" * 60
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 if (!confirmPrompt("Continue?")) {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
316 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
317 }
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 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
320 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
321
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
322 setBranchInfo()
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
323
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
324 println "-" * 60
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
325 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
326 println "-" * 60
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 }
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
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
332 def branchTasks = ['doReleaseBranch']
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 task(taskName) {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
335 dependsOn branchTasks
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
336 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
337
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
338 branchTasks.tail().inject(branchTasks.head()) { a, b ->
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
339 tasks[b].mustRunAfter a
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
340 b
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
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
346 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
347
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
348 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
349 String _message = "> $message" + (defaultValue ? " [$defaultValue] " : "")
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
350 if (System.console()) {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
351 return System.console().readLine(_message) ?: defaultValue
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
352 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
353 println "$_message "
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 System.in.newReader().readLine() ?: defaultValue
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
356 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
357
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
358 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
359 String defaultStr = defaultValue ? 'Y' : 'n'
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
360 String consoleVal = readLine("${message} (Y|n)", defaultStr)
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
361 if (consoleVal) {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
362 return consoleVal.toLowerCase().startsWith('y')
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 defaultValue
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
366 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
367
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
368 private Version determineReleaseVersion(String requested) {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
369 if (requested == 'major') {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
370 return gradle.branch.version.nextMajor()
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
371 } else if (requested == 'minor') {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
372 return gradle.branch.version.nextMinor()
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
373 } else if (requested == 'patch') {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
374 return gradle.branch.version.nextPatch()
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
375 } else {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
376 return new Version(*requested.split(/\./)*.toInteger(), false)
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
377 }
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
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
380 class ArtifactoryGradleSettings extends BuildAdapter implements BuildListener {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
381
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
382 def void projectsEvaluated(Gradle gradle) {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
383 def ssdtArtifactory = 'https://docker.ssdt.io/artifactory'
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
384 Project root = gradle.getRootProject()
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
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
387 def branchVersioning = gradle.rootProject.version == 'unspecified'
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
388
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
389 root.allprojects {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
390
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
391 def thisProject = delegate
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
392 thisProject.status = 'integration'
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
393 if (gradle.branchStream) {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
394 if (branchVersioning) {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
395 thisProject.version = gradle.branch.version
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
396 thisProject.status = gradle.branch.defaultDependencyStatus
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
397 } else {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
398
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
399 thisProject.status = 'integration'
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
400 def fixupVersion = thisProject.version - ".SNAPSHOT"
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
401 if (gradle.branchStream == 'feature') {
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 == 'develop') {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
405 fixupVersion = fixupVersion + ".SNAPSHOT"
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 if (gradle.branchStream in ['production', 'release', 'hotfix']) {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
408 thisProject.status = 'release'
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 thisProject.version = fixupVersion
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
411 }
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
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
414 repositories {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
415
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
416 if (!gradle.bambooBuild || gradle.bambooLocalBuild) {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
417 ivy {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
418 name = 'local'
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
419 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
420 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
421 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
422 }
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 if (!gradle.bambooBuild) {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
425 mavenLocal()
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
426 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
427
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
428 if (gradle.branchStream == 'feature') {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
429 ivy {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
430 name = 'ssdt-branches'
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
431 url = "${ssdtArtifactory}/ssdt-branches/${gradle.branchHash}/"
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
432 patternLayout() {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
433 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
434 ivy "[organization]/[module]/ivy-[revision].xml"
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 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
437 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
438
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
439 ivy {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
440 name = 'ssdt-releases'
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
441 url = "${ssdtArtifactory}/ssdt-releases"
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
442 patternLayout() {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
443 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
444 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
445 ivy "[organization]/[module]/ivy-[revision].xml"
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
446 m2compatible = true
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
447 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
448 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
449
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
450 ivy {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
451 name = 'ssdt-snapshots'
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
452 url = "${ssdtArtifactory}/ssdt-snapshots"
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
453 patternLayout() {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
454 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
455 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
456 ivy "[organization]/[module]/ivy-[revision].xml"
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
457 m2compatible = true
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
458 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
459 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
460
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
461 maven {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
462 name = 'ssdt-repository'
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
463 url = "${ssdtArtifactory}/repository"
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
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
466 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
467
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
468 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
469 if (remoteRepos) {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
470 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
471 remoteRepos.each {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
472 thisProject.repositories.remove(it)
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
473 thisProject.repositories.addLast(it)
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 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
477
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
478 /*
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
479 * 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
480 * 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
481 * 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
482 */
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
483 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
484 thisProject.tasks.create("publishLocal") {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
485 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
486 dependsOn = ["publishIvyPublicationToLocalRepository"]
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
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
490 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
491
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
492 root.subprojects { p ->
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
493 if (root.useIndy()) {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
494 println "enabling indy compilation on $p"
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
495 [compileGroovy.groovyOptions, compileTestGroovy.groovyOptions]*.with {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
496 optimizationOptions = [indy: true]
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 }
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
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
504 task showEnvironments {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
505
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
506 doLast {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
507 println "Defined environments: $gradle.environments"
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
508 gradle.environments.each { e ->
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
509 println "\n $e:"
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
510 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
511 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
512 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
513 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
514 if (logger.isInfoEnabled()) {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
515 println "System properties:"
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
516 System.properties.each { println " $it" }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
517 println "env variables:"
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
518 System.getenv().each { println " $it" }
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 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
521 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
522
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
523 def loadEnvironments() {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
524 def developerPrivate = new Properties()
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
525 if (file('private.properties').exists()) {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
526 developerPrivate.load(file('private.properties').newReader())
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
527 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
528 def envOverrides = [:]
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
529
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
530 if (!hasProperty('env')) {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
531 gradle.ext.env = developerPrivate.env ?: 'dev'
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
532 } else {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
533 def values = getProperty('env').split(',')
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
534 gradle.ext.env = values.first()
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
535 values.tail().each {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
536 def (k, v) = it.split('=')
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
537 envOverrides.put(k, v)
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
538 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
539 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
540
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
541 println "Environment is: $gradle.env ($envOverrides)"
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
542 def slurper = new ConfigSlurper(gradle.env)
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
543 slurper.setBinding(['gradle': gradle])
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
544
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
545 def environment = slurper.parse(
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
546 '''deploy.mode="production"
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
547 environments {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
548 test { deploy.mode="test" }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
549 dev { deploy.mode="development"}
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 if (developerPrivate['deploy.mode']) {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
552 environment.put('deploy.mode', developerPrivate['deploy.mode'])
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
553 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
554
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
555 environment.put('branchInfo',gradle.branch)
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
556 environment.put('branchVersion',gradle.branch.version.toString())
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
557 def environments = []
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
558 gradle.ext.environment = environment
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
559 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
560 def envName = envFile.name - '.groovy'
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
561 def privateFile = file("private" + envName - "environment" + ".groovy")
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
562 logger.info("loading environment $envFile.name")
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
563
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
564 def envCfg = slurper.parse(envFile.toURL())
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
565 envCfg.merge(slurper.parse(developerPrivate))
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
566 envCfg.put('ssdt.projectid', gradle.ssdtProjectId)
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
567 envCfg.put('ssdt.environment', gradle.env)
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
568 if (privateFile.exists()) {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
569 logger.info("loading private environment $privateFile")
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
570 envCfg.merge(slurper.parse(privateFile.toURL()))
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
571 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
572
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
573 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
574 it.value.split(',').each { p ->
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
575 def (k, v) = p.split('=')
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
576 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
577 envCfg.put(k, v)
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
578 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
579 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
580
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
581 envOverrides.each { k, v ->
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
582 logger.info("$envName: overriding " + k + "=" + v)
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
583 envCfg.put(k, v)
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
584 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
585 environment.merge(envCfg)
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
586 if (envName != 'environment') {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
587 gradle.ext[envName] = envCfg
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
588 environments << envName
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
589 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
590 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
591 environment.merge(slurper.parse(developerPrivate))
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
592 def deployMode = environment.deploy.mode ?: 'development'
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
593 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
594 environments << 'environment'
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
595 gradle.ext.environments = environments
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
596
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
597 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
598
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
599 def updateCopyrightProfile(Project r) {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
600 r.file('.idea/copyright').mkdirs()
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
601 r.file('.idea/copyright/ODE.xml').text =
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
602 '''<component name="CopyrightManager">
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 <option name="notice" value="Copyright (c) &amp;#36;today.year. Ohio Department of Education. - All Rights Reserved.&#10;Unauthorized copying of this file, in any medium, is strictly prohibited.&#10;Written by the State Software Development Team (http://ssdt.oecn.k12.oh.us/)&#10;" />
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
605 <option name="myName" value="ODE" />
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
606 </copyright>
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
607 </component>'''
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
608
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
609 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
610 '''<component name="CopyrightManager">
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
611 <settings default="ODE" />
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
612 </component>'''
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
613
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
614 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
615
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
616 @ToString(includeNames=true)
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
617 class RuntimeInfo {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
618 // OS memory in megabytes, zero if unknown
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
619 int systemMemory = 0
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
620 int systemFreeMemory = 0
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
621 String javaVersion = System.getProperty('java.version')
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
622
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
623 RuntimeInfo() {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
624 try {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
625 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
626 int value = (it[1] as Long) / 1024
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
627 if (it[0].startsWith('MemTotal')) { systemMemory = value }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
628 if (it[0].startsWith('MemFree')) { systemFreeMemory = value }
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 } catch (e) { }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
632
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
633 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
634
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
635 void requireMemory(int megabytes) {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
636 if (systemFreeMemory > 0 && systemFreeMemory < megabytes) {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
637 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
638 // 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
639 }
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 /**
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
642 * 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
643 */
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
644 int maxMemory(int megabytes) {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
645 if (systemFreeMemory) {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
646 [systemFreeMemory,megabytes].min()
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
647 } else { megabytes }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
648
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
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
651 void requireJava(String version) {
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 if ( version && !javaVersion.startsWith(version)) {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
654 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
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 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
659
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
660
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
661 @TupleConstructor
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
662 @Sortable
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
663 class Version {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
664
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
665 Integer major = 0
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
666 Integer minor = 0
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
667 Integer patch = 0
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
668 Boolean snapshot = true
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 Integer previousMinor = 0
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
671 Integer previousPatch = 0
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 Version nextMajor() {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
674 new Version(major + 1, 0, 0, false)
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
675 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
676
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
677 Version nextMinor() {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
678 if (snapshot) {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
679 new Version(major, minor , 0,false)
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
680 } else {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
681 new Version(major, minor + 1, 0,false)
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
682 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
683 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
684
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
685 Version nextPatch() {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
686 if (snapshot) {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
687 new Version(major, previousMinor, previousPatch + 1,false)
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
688 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
689 }
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 Version nextSnapshot() {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
692 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
693 }
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 boolean isHotfix() {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
696 !snapshot && patch > 0
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
697 }
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 String toString() {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
700 "${major}.${minor}.${patch}${snapshot ? '.SNAPSHOT' : ''}"
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
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
703 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
704
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
705 void setBranchInfo() {
346
3504897af0f5 use github vars
Marc Davis <marc.davis@mcoecn.org>
parents: 341
diff changeset
706 gradle.ext.branch = new BranchInfo(System.getenv('head_ref'))
336
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
707 gradle.ext.branchName = gradle.branch.name
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
708 gradle.ext.branchStream = gradle.branch.stream
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
709 gradle.ext.branchHash = gradle.branch.hash
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
710 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
711 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
712
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
713
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
714 class BranchInfo {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
715 def name
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
716 def stream = "none"
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
717 def buildNumber = ""
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
718 def changeset = ""
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
719 def version
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
720
340
5b1ab7484ad7 testing
marc_davis <davis@ssdt-ohio.org>
parents: 339
diff changeset
721 String toString() {
346
3504897af0f5 use github vars
Marc Davis <marc.davis@mcoecn.org>
parents: 341
diff changeset
722 "{name:$name, stream:$stream, buildNumber:$buildNumber, changeSet:$changeset, version:$version}"
340
5b1ab7484ad7 testing
marc_davis <davis@ssdt-ohio.org>
parents: 339
diff changeset
723 }
5b1ab7484ad7 testing
marc_davis <davis@ssdt-ohio.org>
parents: 339
diff changeset
724
336
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
725 BranchInfo(name) {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
726 this.name = name
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
727 if (!name) {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
728 this.name = determineName() ?: ''
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 this.name = this.name.replace('@', '-')
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
731 determineStream()
346
3504897af0f5 use github vars
Marc Davis <marc.davis@mcoecn.org>
parents: 341
diff changeset
732 buildNumber = System.getenv('run_number') ?: ""
3504897af0f5 use github vars
Marc Davis <marc.davis@mcoecn.org>
parents: 341
diff changeset
733 changeset = System.getenv('sha') ?: ""
336
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
734 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
735
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
736 String getDefaultDependencyStatus() {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
737 return isRelease() ? 'release' : 'integration'
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
738 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
739
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
740 private boolean isRelease() {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
741 return stream in ['release', 'hotfix']
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
742 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
743
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
744 def getShortName() {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
745 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
746 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
747
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
748 String getBuildVersion() {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
749 def v = isRelease() ? shortName - "v": ""
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
750 return v
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
751 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
752
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
753 def Version getVersion() {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
754 if (!version) {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
755 if (isRelease()) {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
756 version = new Version(*getBuildVersion().split('\\.')*.toInteger(), false)
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
757 } else {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
758 version = findSnapshotVersion()
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
759 }
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 return version
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
762 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
763
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
764 def getImageId() {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
765 (buildVersion ?: shortName.take(25)) + (buildNumber ? "-${buildNumber}" : "-0")
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 getDeployName() {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
769 (buildVersion ?: shortName.take(25)).toLowerCase().collectReplacements {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
770 ('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
771 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
772 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
773
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
774 def getHash() {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
775 generateMD5(name)
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 def generateMD5(String s) {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
778 def digest = java.security.MessageDigest.getInstance("MD5")
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
779 digest.update(s.bytes);
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
780 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
781 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
782
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
783 private Version findSnapshotVersion() {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
784 println "findSnapshotVersion()"
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
785 try {
346
3504897af0f5 use github vars
Marc Davis <marc.davis@mcoecn.org>
parents: 341
diff changeset
786 def repositoryUrl = System.getenv('repositoryUrl')
336
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
787 if (repositoryUrl) {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
788 println "git pull $repositoryUrl".execute().text
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
789 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
790 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
791 .findAll { it != null || it != "" }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
792 .collect { it.replace("v", "") }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
793 .collect {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
794 Version v = null
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
795 try {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
796 v = new Version(*it.split('\\.')*.toInteger())
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
797 return v
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
798 } catch (ignored) {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
799 //non semver tag found, ignoring
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
800 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
801 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
802 .sort { v1, v2 -> v2 <=> v1 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
803
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
804 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
805 .findAll { it.contains('release') || it.contains('hotfix') }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
806 .collect { it.replaceAll('\\s+', ' ').split('/').last() - 'v' }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
807 .collect { new Version(*it.split('\\.')*.toInteger()) }
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 def results = (branches + versions).sort { v1, v2 -> v2 <=> v1 }
339
21b015e926ff testing
marc_davis <davis@ssdt-ohio.org>
parents: 338
diff changeset
810
336
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
811 if (results.isEmpty()) {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
812 return new Version().nextSnapshot()
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
813 } else {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
814 return results.first().nextSnapshot()
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
815 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
816 } catch (ex) {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
817 println ex
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
818 return new Version().nextSnapshot()
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
819 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
820 }
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 def determineName() {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
823 try {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
824 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
825 return branch
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
826 } catch (ignored) {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
827 return null
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 }
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 /**
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
832 * 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
833 * 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
834 * file around just for the comparison.
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
835 *
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
836 * 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
837 */
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
838 void determineStream() {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
839 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
840 if (flowConfig.exists()) {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
841 def flows = new Properties()
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
842 flows.load(flowConfig.newReader())
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
843 flows.stringPropertyNames().each {
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
844 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
845 stream = it
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 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
848 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
849 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
850
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
851 }
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
852
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
853
6258c89efe9e add a new init70 for github actions
marc_davis <davis@ssdt-ohio.org>
parents:
diff changeset
854