Jenkins

From My Limbic Wiki
Revision as of 16:58, 22 November 2019 by Fukakai (talk | contribs) (Page créée avec « =Continuous Delivery Pipeline= Jenkins have created the concept of "Pipeline As Code" <source lang="JSON"> Jenkinsfile (Declarative Pipeline) pipeline { agent any... »)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Continuous Delivery Pipeline

Jenkins have created the concept of "Pipeline As Code"

<source lang="JSON"> Jenkinsfile (Declarative Pipeline) pipeline {

   agent any
   stages {
       stage('Build') {
           steps {
               echo 'Building..'
           }
       }
       stage('Test') {
           steps {
               echo 'Testing..'
           }
       }
       stage('Deploy') {
           steps {
               echo 'Deploying....'
           }
       }
   }

} </source>