stages {
stage {
// Fetch some data and store in variables
}
stage {
parallel {
stage {
agent x
// Use the variables
}
stage {
agent y
// Use the variables
}
}
}
}Assuming I have a Jenkinsfile similar to the following (high-level),Can I use the variables in the parallel stages, when each of the parallel stages is running a different agent?