新增华为数据归因分析
This commit is contained in:
parent
97aa4d579c
commit
bd1ce64bfa
|
|
@ -0,0 +1,20 @@
|
||||||
|
pipeline {
|
||||||
|
agent any
|
||||||
|
stages {
|
||||||
|
stage('Build') {
|
||||||
|
steps {
|
||||||
|
sh 'echo build'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage('Test'){
|
||||||
|
steps {
|
||||||
|
sh 'echo test'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage('Deploy') {
|
||||||
|
steps {
|
||||||
|
sh 'echo publish'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue