jenkins Build steps 中每个方法的作用
时间: 2023-12-14 18:09:01 浏览: 135
在 Jenkins 的 Build steps 中,每个方法都有其特定的作用,下面是一些常用的方法及其作用:
1. **Execute shell**:运行 shell 脚本。
2. **Execute Windows batch command**:运行 Windows 命令。
3. **Invoke Ant**:运行 Ant 构建脚本。
4. **Invoke Gradle script**:运行 Gradle 构建脚本。
5. **Invoke Maven**:运行 Maven 构建脚本。
6. **Publish over SSH**:将文件或目录通过 SSH 上传到远程服务器。
7. **Send build artifacts over SSH**:将构建产物通过 SSH 上传到远程服务器。
8. **Archive the artifacts**:将构建产物打包成 ZIP 或 TAR 文件并发布到 Jenkins。
9. **Trigger/call builds on other projects**:触发或调用其他项目的构建。
10. **Conditional steps (single)**:根据条件执行不同的构建步骤。
11. **Conditional steps (multiple)**:根据条件执行多个构建步骤。
12. **Git Publisher**:将 Git 仓库中的代码推送到其他 Git 仓库。
13. **JUnit test result report**:发布 JUnit 测试结果报告。
14. **Email notification**:通过邮件通知构建结果。
以上是一些常用的 Jenkins Build steps 方法及其作用,具体使用方法可以参考 Jenkins 官方文档。
阅读全文