Details
-
Type:
Bug
-
Status: Open (View Workflow)
-
Priority:
Minor
-
Resolution: Unresolved
-
Component/s: blueocean-plugin
-
Labels:None
-
Environment:Jenkins 2.249.2
-
Similar Issues:
Description
stage('BuildAndTest') { matrix { agent { label 'windows' } axes { axis { name 'TOOL' values 'x', 'y' } } stages { stage('Capshe') { steps { } } stage('Build') { steps {} } stage('UI Tests') { steps {} } stage('Archive') { steps { archiveArtifacts "${TOOL}/*" } } stage('Analyse') { steps {} } } } }
Placing archiveArtifacts outside of the Matrix: