From 73e60d5659bb7b75e4558c360eccff340f877e76 Mon Sep 17 00:00:00 2001 From: andrew clark Date: Tue, 7 Oct 2025 19:30:16 -0600 Subject: [PATCH] Adding additional status updates The parent stage sometimes remains in pending even if the child stage completes when skipped. Added an additional status update for the parent stage. --- Jenkinsfile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 7a9936de5f..28a5ad0bf2 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1839,7 +1839,12 @@ pipeline { post { success { script { - // Report the skipped stage's status // TODO: Test run - delete me + // Report the skipped parent's stage status + def variant = "Process Performance Test Results" + gitStatusWrapper(credentialsId: "${env.ck_git_creds}", gitHubContext: "${variant}", account: 'ROCm', repo: 'composable_kernel') { + echo "Process Performance Test Results stage skipped." + } + // Report the skipped stage's status def variant = "Process results" gitStatusWrapper(credentialsId: "${env.ck_git_creds}", gitHubContext: "${variant}", account: 'ROCm', repo: 'composable_kernel') { echo "Process Performance Test Results stage skipped."