新增华为数据归因分析

This commit is contained in:
kuang.yife 2023-10-30 17:40:59 +08:00
parent 97aa4d579c
commit bd1ce64bfa
1 changed files with 20 additions and 0 deletions

20
Jenkinsfile vendored Normal file
View File

@ -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'
}
}
}
}