Skip to content

Commit

Permalink
ci: remove STATUS commands from upstream tests' Jenkinsfile
Browse files Browse the repository at this point in the history
These are remnants of a past before GHPRB. At best they create
uncessary noise in the logs, at worst they can interfere with the
default behaviour, so let's just remove them.

Signed-off-by: Nicolas Busseneau <nicolas@isovalent.com>
  • Loading branch information
nbusseneau authored and pchaigno committed Apr 26, 2023
1 parent f3c8190 commit 46de5bc
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions jenkinsfiles/kubernetes-upstream.Jenkinsfile
Expand Up @@ -39,7 +39,6 @@ pipeline {
stage('Checkout') {
steps {
sh 'env'
Status("PENDING", "${env.JOB_NAME}")
checkout scm
sh 'mkdir -p ${PROJ_PATH}'
sh 'ls -A | grep -v src | xargs mv -t ${PROJ_PATH}'
Expand Down Expand Up @@ -129,11 +128,5 @@ pipeline {
cleanWs()
sh '/usr/local/bin/cleanup || true'
}
success {
Status("SUCCESS", "$JOB_BASE_NAME")
}
failure {
Status("FAILURE", "$JOB_BASE_NAME")
}
}
}

0 comments on commit 46de5bc

Please sign in to comment.