📜  限制这个项目可以在哪里运行詹金斯管道 - 任何代码示例

📅  最后修改于: 2022-03-11 15:00:07.453000             🧑  作者: Mango

代码示例1
pipeline {
    agent none
    //agent { label 'X' }

    stages {
        stage('Build') {
            agent { label 'slave-node​' }
            steps {
                echo 'Building..'
                sh '''
                '''
            }
        }
    }

    post {
        success {
            echo 'This will run only if successful'
        }
    }
}