GITLAB

Arsisakarn Srilatanart / ng2-test-modal

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • ng2-test-modal
  • Jenkinsfile
  • 8a0d4423   add jenkins file Browse Code ยป
    Arsisakarn Srilatanart
    2017-12-07 15:07:05 +0700  
Jenkinsfile 357 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
pipeline {
    agent any

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