10 lines
275 B
Plaintext
10 lines
275 B
Plaintext
|
/**
|
||
|
* 简化版Jenkinsfile
|
||
|
* 所有复杂逻辑都在共享库和模板中处理
|
||
|
* 项目只需要维护 .ci-config.yml 配置文件
|
||
|
*/
|
||
|
|
||
|
// 加载通用Pipeline模板
|
||
|
def pipelineTemplate = libraryResource 'templates/universal-pipeline.groovy'
|
||
|
evaluate(pipelineTemplate)
|