增加Jenkinsfile

This commit is contained in:
LingZhaoHui 2020-09-13 20:02:47 +08:00
parent 7f80fe228a
commit 55cf3997ca

11
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,11 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'bash build.sh'
}
}
}
}