summaryrefslogtreecommitdiff
path: root/Jenkinsfile
blob: 9dbcc2dda3abfee2384d13efce163eb9f6080acf (plain)
1
2
3
4
5
6
7
8
9
10
pipeline {
    agent any
    stages {
        stage('build') {
            steps {
                sh 'cd /home/lanhui/englishpal'
            }
        }
    }
}