[rocm-libraries] ROCm/rocm-libraries#4351 (commit 3b98c98)

[composablekernel] fix failure status

## Motivation

Pipelines were failing on Math CI status check.

## Technical Details

For the success case, we just changed the config in Jenkins to use a
proper app token and no code changes were required. However, the failure
case would not have worked as coded, so we needed to move that outside
of the `rocmnode()` block.

## Test Plan

I removed all of the CI in one of the commits to quickly test, and then
added it back.  Got a successful "success" message and "failure" message
produced
This commit is contained in:
Jobbins
2026-02-05 15:57:21 +00:00
committed by assistant-librarian[bot]
parent 3a02862241
commit 344d98781b

6
Jenkinsfile vendored
View File

@@ -1965,10 +1965,10 @@ pipeline {
description: 'All checks have passed'
}
failure {
githubNotify context: 'Math CI Summary',
status: 'FAILURE',
description: 'Some checks have failed'
node(rocmnode("nogpu")) {
githubNotify context: 'Math CI Summary',
status: 'FAILURE',
description: 'Some checks have failed'
script {
sendFailureNotifications()
}