Skip to content

Commit 9292917

Browse files
authored
[Jenkins] Remove 'Jenkins - ' prefix (#2920)
The prefix is causing the status updates from gitStatusWrapper to be unique to the status updates that are created by the Jenkins server, which creates duplicates
1 parent ab22f91 commit 9292917

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Jenkinsfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -476,7 +476,7 @@ def buildHipClangJob(Map conf=[:]){
476476
def retimage
477477
(retimage, image) = getDockerImage(conf)
478478

479-
gitStatusWrapper(credentialsId: "${env.ck_git_creds}", gitHubContext: "Jenkins - ${variant}", account: 'ROCm', repo: 'composable_kernel') {
479+
gitStatusWrapper(credentialsId: "${env.ck_git_creds}", gitHubContext: "${variant}", account: 'ROCm', repo: 'composable_kernel') {
480480
withDockerContainer(image: image, args: dockerOpts + ' -v=/var/jenkins/:/var/jenkins') {
481481
timeout(time: 20, unit: 'HOURS')
482482
{
@@ -538,7 +538,7 @@ def Build_CK(Map conf=[:]){
538538
def image
539539
def retimage
540540

541-
gitStatusWrapper(credentialsId: "${env.ck_git_creds}", gitHubContext: "Jenkins - ${variant}", account: 'ROCm', repo: 'composable_kernel') {
541+
gitStatusWrapper(credentialsId: "${env.ck_git_creds}", gitHubContext: "${variant}", account: 'ROCm', repo: 'composable_kernel') {
542542
try {
543543
(retimage, image) = getDockerImage(conf)
544544
withDockerContainer(image: image, args: dockerOpts) {
@@ -728,7 +728,7 @@ def process_results(Map conf=[:]){
728728
def variant = env.STAGE_NAME
729729
def retimage
730730

731-
gitStatusWrapper(credentialsId: "${env.ck_git_creds}", gitHubContext: "Jenkins - ${variant}", account: 'ROCm', repo: 'composable_kernel') {
731+
gitStatusWrapper(credentialsId: "${env.ck_git_creds}", gitHubContext: "${variant}", account: 'ROCm', repo: 'composable_kernel') {
732732
try
733733
{
734734
echo "Pulling image: ${image}"
@@ -836,7 +836,7 @@ def run_aiter_tests(Map conf=[:]){
836836
dockerOpts = dockerOpts + " --group-add=${video_id} --group-add=${render_id} "
837837
echo "Docker flags: ${dockerOpts}"
838838

839-
gitStatusWrapper(credentialsId: "${env.ck_git_creds}", gitHubContext: "Jenkins - ${variant}", account: 'ROCm', repo: 'composable_kernel') {
839+
gitStatusWrapper(credentialsId: "${env.ck_git_creds}", gitHubContext: "${variant}", account: 'ROCm', repo: 'composable_kernel') {
840840
try
841841
{
842842
echo "Pulling image: ${image}"
@@ -894,7 +894,7 @@ def run_pytorch_tests(Map conf=[:]){
894894
dockerOpts = dockerOpts + " --group-add=${video_id} --group-add=${render_id} "
895895
echo "Docker flags: ${dockerOpts}"
896896

897-
gitStatusWrapper(credentialsId: "${env.ck_git_creds}", gitHubContext: "Jenkins - ${variant}", account: 'ROCm', repo: 'composable_kernel') {
897+
gitStatusWrapper(credentialsId: "${env.ck_git_creds}", gitHubContext: "${variant}", account: 'ROCm', repo: 'composable_kernel') {
898898
try
899899
{
900900
echo "Pulling image: ${image}"

0 commit comments

Comments
 (0)