Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 12 additions & 9 deletions Jenkinsfile
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do not change Functional on EL 8.8 with Valgrind - on one is using it.

Original file line number Diff line number Diff line change
Expand Up @@ -874,7 +874,7 @@ pipeline {
expression { !paramsValue('CI_FUNCTIONAL_TEST_SKIP', false) }
}
parallel {
stage('Functional on EL 8.8 with Valgrind') {
stage('Functional with Valgrind') {
when {
beforeAgent true
expression { !skipStage() }
Expand All @@ -888,16 +888,17 @@ pipeline {
inst_repos: daosRepos(),
inst_rpms: functionalPackages(1, next_version(), 'tests-internal') +
' mercury-libfabric',
test_function: 'runTestFunctionalV2'))
test_function: 'runTestFunctionalV2',
image_version: 'el8.8'))
}
post {
always {
functionalTestPostV2()
job_status_update()
}
}
} // stage('Functional on EL 8.8 with Valgrind')
stage('Functional on EL 8.8') {
} // stage('Functional with Valgrind')
stage('Functional on EL 8') {
when {
beforeAgent true
expression { !skipStage() }
Expand All @@ -911,16 +912,17 @@ pipeline {
inst_repos: daosRepos(),
inst_rpms: functionalPackages(1, next_version(), 'tests-internal') +
' mercury-libfabric',
test_function: 'runTestFunctionalV2'))
test_function: 'runTestFunctionalV2',
image_version: 'el8.8'))
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
image_version: 'el8.8'))
image_version: 'el8.10'))

}
post {
always {
functionalTestPostV2()
job_status_update()
}
}
} // stage('Functional on EL 8.8')
stage('Functional on EL 9') {
} // stage('Functional on EL 8')
stage('Functional') {
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
stage('Functional') {
stage('Functional on EL 9') {

when {
beforeAgent true
expression { !skipStage() }
Expand All @@ -934,15 +936,16 @@ pipeline {
inst_repos: daosRepos(),
inst_rpms: functionalPackages(1, next_version(), 'tests-internal') +
' mercury-libfabric',
test_function: 'runTestFunctionalV2'))
test_function: 'runTestFunctionalV2',
image_version: 'el9.7'))
}
post {
always {
functionalTestPostV2()
job_status_update()
}
}
} // stage('Functional on EL 9')
} // stage('Functional')
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
} // stage('Functional')
} // stage('Functional on EL 9')

stage('Functional on Leap 15.6') {
when {
beforeAgent true
Expand Down
Loading