2017-07-12 2 views

答えて

0

を起動する方法ここにありますがありますそれを行う完全なJenkinsfile:

pipeline { 
    agent { label 'docker' } 
    stages { 
    stage('build') { 
     steps { 
     echo "build" 
     } 
    } 
    } 
    post { 
    always { 
     script { 
     sh "curl -v 'https://jsonplaceholder.typicode.com/posts/1'" 
     } 
    } 
    } 
} 
関連する問題