matrix based security
User/Group
Job
Overall
Agent
Credentials
pipeline {
agent any
stages {
stage('Build') {
steps {
echo "Building app..."
}
}
stage('Deploy') {
steps {
echo "Deploying to dev environment..."
}
}
}
}1
2
3
