mirror of
https://github.com/corda/corda.git
synced 2024-12-19 04:57:58 +00:00
NexusIQ updates (#6499)
* every build related to Corda X.Y (GA, RC, HC, patch or snapshot) uses the same NexusIQ application * NexusIQ application application *has* to exist before a build starts
This commit is contained in:
parent
ca37b9b737
commit
05532c0419
5
.ci/dev/regression/Jenkinsfile
vendored
5
.ci/dev/regression/Jenkinsfile
vendored
@ -57,14 +57,15 @@ pipeline {
|
|||||||
sh "./gradlew --no-daemon clean jar"
|
sh "./gradlew --no-daemon clean jar"
|
||||||
script {
|
script {
|
||||||
sh "./gradlew --no-daemon properties | grep -E '^(version|group):' >version-properties"
|
sh "./gradlew --no-daemon properties | grep -E '^(version|group):' >version-properties"
|
||||||
def version = sh (returnStdout: true, script: "grep ^version: version-properties | sed -e 's/^version: //'").trim()
|
/* every build related to Corda X.Y (GA, RC, HC, patch or snapshot) uses the same NexusIQ application */
|
||||||
|
def version = sh (returnStdout: true, script: "grep ^version: version-properties | sed -e 's/^version: \\([0-9]\\+\\.[0-9]\\+\\).*\$/\\1/'").trim()
|
||||||
def groupId = sh (returnStdout: true, script: "grep ^group: version-properties | sed -e 's/^group: //'").trim()
|
def groupId = sh (returnStdout: true, script: "grep ^group: version-properties | sed -e 's/^group: //'").trim()
|
||||||
def artifactId = 'corda'
|
def artifactId = 'corda'
|
||||||
nexusAppId = "jenkins-${groupId}-${artifactId}-${version}"
|
nexusAppId = "jenkins-${groupId}-${artifactId}-${version}"
|
||||||
}
|
}
|
||||||
nexusPolicyEvaluation (
|
nexusPolicyEvaluation (
|
||||||
failBuildOnNetworkError: false,
|
failBuildOnNetworkError: false,
|
||||||
iqApplication: manualApplication(nexusAppId),
|
iqApplication: selectedApplication(nexusAppId), // application *has* to exist before a build starts!
|
||||||
iqScanPatterns: [[scanPattern: 'node/capsule/build/libs/corda*.jar']],
|
iqScanPatterns: [[scanPattern: 'node/capsule/build/libs/corda*.jar']],
|
||||||
iqStage: nexusIqStage
|
iqStage: nexusIqStage
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user