Files
test_issue_template/Jenkinsfile
Vergil Wong ae06fbbdd3
All checks were successful
test_issue_template/test_issue_template/pipeline/head This commit looks good
Vergil的CI/test_issue_template/pipeline/head This commit looks good
纠正名称
2023-12-27 23:57:52 +08:00

27 lines
529 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Building...'
// 在这里添加构建项目的命令
}
}
stage('Test') {
steps {
echo 'Testing...'
// 在这里添加运行测试的命令
}
}
stage('Deploy') {
steps {
echo 'Deploying...'
// 在这里添加部署应用的命令
}
}
}
}