mirror of
https://github.com/corda/corda.git
synced 2025-01-18 18:56:28 +00:00
Merge branch 'release/os/4.8' into wz/merge-os-48-49-2022-01-12
This commit is contained in:
commit
54bd321bfe
18
.ci/dev/regression/Jenkinsfile
vendored
18
.ci/dev/regression/Jenkinsfile
vendored
@ -65,6 +65,7 @@ pipeline {
|
||||
|
||||
parameters {
|
||||
choice choices: nexusIqStageChoices, description: 'NexusIQ stage for code evaluation', name: 'nexusIqStage'
|
||||
booleanParam defaultValue: true, description: 'Run tests during this build?', name: 'DO_TEST'
|
||||
}
|
||||
|
||||
/*
|
||||
@ -91,6 +92,9 @@ pipeline {
|
||||
}
|
||||
|
||||
stage('Stash') {
|
||||
when {
|
||||
expression { params.DO_TEST }
|
||||
}
|
||||
steps {
|
||||
stash name: 'compiled', useDefaultExcludes: false
|
||||
}
|
||||
@ -115,6 +119,10 @@ pipeline {
|
||||
}
|
||||
|
||||
stage('All Tests') {
|
||||
when {
|
||||
expression { params.DO_TEST }
|
||||
beforeAgent true
|
||||
}
|
||||
parallel {
|
||||
stage('Another agent') {
|
||||
agent {
|
||||
@ -321,10 +329,12 @@ pipeline {
|
||||
always {
|
||||
script {
|
||||
try {
|
||||
unstash 'allure-input'
|
||||
allure includeProperties: false,
|
||||
jdk: '',
|
||||
results: [[path: '**/allure-input']]
|
||||
if (params.DO_TEST) {
|
||||
unstash 'allure-input'
|
||||
allure includeProperties: false,
|
||||
jdk: '',
|
||||
results: [[path: '**/allure-input']]
|
||||
}
|
||||
} catch (err) {
|
||||
echo("Allure report generation failed: $err")
|
||||
|
||||
|
@ -68,7 +68,7 @@ buildscript {
|
||||
ext.servlet_version = '4.0.1'
|
||||
ext.assertj_version = '3.12.2'
|
||||
ext.slf4j_version = '1.7.30'
|
||||
ext.log4j_version = '2.17.0'
|
||||
ext.log4j_version = '2.17.1'
|
||||
ext.bouncycastle_version = constants.getProperty("bouncycastleVersion")
|
||||
ext.guava_version = constants.getProperty("guavaVersion")
|
||||
ext.caffeine_version = constants.getProperty("caffeineVersion")
|
||||
|
Loading…
Reference in New Issue
Block a user