添加jenkins file
This commit is contained in:
@@ -10,7 +10,8 @@ labels:
|
||||
- priority/medium
|
||||
|
||||
---
|
||||
# Bug 反馈
|
||||
# Bug 反馈标题
|
||||
[//]: # (提供一个清晰且描述性的标题)
|
||||
|
||||
## 描述
|
||||
[//]: # (提供问题的简洁描述)
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
|
||||
name: "PR"
|
||||
about: "Bug 反馈模板"
|
||||
about: "PR 反馈模板"
|
||||
title: "[PR] "
|
||||
ref: "main"
|
||||
labels:
|
||||
|
||||
- bug
|
||||
- feature
|
||||
- kind/bug
|
||||
- priority/medium
|
||||
|
||||
---
|
||||
|
||||
|
||||
26
jenkinsfile
Normal file
26
jenkinsfile
Normal file
@@ -0,0 +1,26 @@
|
||||
pipeline {
|
||||
agent any
|
||||
|
||||
stages {
|
||||
stage('Build') {
|
||||
steps {
|
||||
echo 'Building...'
|
||||
// 在这里添加构建项目的命令
|
||||
}
|
||||
}
|
||||
|
||||
stage('Test') {
|
||||
steps {
|
||||
echo 'Testing...'
|
||||
// 在这里添加运行测试的命令
|
||||
}
|
||||
}
|
||||
|
||||
stage('Deploy') {
|
||||
steps {
|
||||
echo 'Deploying...'
|
||||
// 在这里添加部署应用的命令
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user