mirror of
https://github.com/corda/corda.git
synced 2025-06-18 15:18:16 +00:00
Fixed missing elements
This commit is contained in:
@ -18,7 +18,7 @@ killAllExistingBuildsForJob(env.JOB_NAME, env.BUILD_NUMBER.toInteger())
|
|||||||
** calculate the stage for NexusIQ evaluation
|
** calculate the stage for NexusIQ evaluation
|
||||||
** * build for snapshots
|
** * build for snapshots
|
||||||
*/
|
*/
|
||||||
def nexusIqStage = "build"
|
def nexusDefaultIqStage = "build"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* make sure calculated default value of NexusIQ stage is first in the list
|
* make sure calculated default value of NexusIQ stage is first in the list
|
||||||
@ -44,6 +44,10 @@ pipeline {
|
|||||||
buildDiscarder(logRotator(daysToKeepStr: '14', artifactDaysToKeepStr: '14'))
|
buildDiscarder(logRotator(daysToKeepStr: '14', artifactDaysToKeepStr: '14'))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
parameters {
|
||||||
|
choice choices: nexusIqStageChoices, description: 'NexusIQ stage for code evaluation', name: 'nexusIqStage'
|
||||||
|
}
|
||||||
|
|
||||||
triggers {
|
triggers {
|
||||||
cron '@midnight'
|
cron '@midnight'
|
||||||
}
|
}
|
||||||
|
1
.ci/dev/regression/Jenkinsfile
vendored
1
.ci/dev/regression/Jenkinsfile
vendored
@ -25,7 +25,6 @@ boolean isInternalRelease = (env.TAG_NAME =~ /^internal-release-.*$/)
|
|||||||
** * stage-release: for release candidates and for health checks
|
** * stage-release: for release candidates and for health checks
|
||||||
** * operate: for final release
|
** * operate: for final release
|
||||||
*/
|
*/
|
||||||
|
|
||||||
def nexusDefaultIqStage = "build"
|
def nexusDefaultIqStage = "build"
|
||||||
if (isReleaseTag) {
|
if (isReleaseTag) {
|
||||||
switch (env.TAG_NAME) {
|
switch (env.TAG_NAME) {
|
||||||
|
Reference in New Issue
Block a user