agent any 
    stages { 
        stage ('Build') { 
        steps {
        // 1.Git Pull  pull request#1\
    // 2.create container
        // 3.Build container
            echo 'Running Build Phase.'
            }
        }
        stage ('Unit Test') { 
        steps {
            //1.Run Unit Test
            echo 'Running Testing Phase.'
            }
        }
        stage ('Deploy') { 
        steps {
            //1.Run Container
            //2.Close Pull Request
            echo 'Running Deploy Phase.'
            }
        }
 
    }           
 }

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/43c4d031-f81c-4ea2-aad5-683ace277e3dn%40googlegroups.com.

Reply via email to