-
Bug
-
Resolution: Unresolved
-
Major
-
None
-
jenkins 2.303.2
blue ocean 1.25.0
I if run this pipeline skipping the second axis of a matrix I cannot see the steps of the first axis NOT skipped, during and after the run
pipeline
{
agent none
stages
{
stage('s1') {
matrix {
axes {
axis {
name 'axis'
values 'axis1', 'axis2', 'axis3'
}
}
stages {
stage('s2') {
when {
beforeAgent true
expression { axis != 'axis2' }
}
agent none
steps {
print axis
}
}
}
}
}
}
}
actually I cannot even click on axis1
In the logs I can see that it’s executed: it’s only a rendering issue
It happens only if I skip the first axis. If I skip any other axis it’s visible
It looks similar to JENKINS-49131 but here the active stage is not accessible even after the whole pipeline is over