-
Bug
-
Resolution: Unresolved
-
Major
-
linux red7
My problème is, when i launch the build,the block of stage view doesn't appears to show me the state oh every stage, i need to go to the console eveyr time to see the logs ....
i installed the plugin "Pipeline Stage View version 2.11,
And i created a differents stages:
pipeline {
agent any
options
{ ansiColor('xterm') }
environment
{ PLAY_NAME = 'PLAY' PLAY_PATH = "/app/list/ansible/Ansible" }
stages {
stage('preserve build user') {
steps {
wrap([$class: 'BuildUser']) {
script {
USER_ID = "${BUILD_USER_ID}"
}
}
echo "${USER_ID}"
} }
stage("kerberos") {
steps {
sh 'echo ${Kerberos} | /usr/share/centrifydc/kerberos/bin/kinit -C ${USER_ID}'
sh 'whoami'
}
}
}
post {
always
{ deleteDir() }} }