哈德森新手:成功构建后如何运行软件

发布于 2024-10-26 19:01:40 字数 241 浏览 2 评论 0原文

我是持续​​集成和软件开发领域的新手。

我想尝试 hudson,所以我将它安装在我的 ubuntu 机器上并创建了一个新作业。我把它指向一个开源项目的 svn (keepassx) 只是为了尝试。

Hudson 从存储库下载了所有内容,并标记为蓝色表示成功构建。 我现在不应该能够以某种方式执行该软件吗?我以为一旦构建完成,我就可以运行它,但是我在 hudson 用户主目录下的项目主页中找不到任何可执行文件。

谢谢。

i'm new to world of continuous integration and software developement.

I wanted to try hudson so i installed it on my ubuntu machine and created a new job. i pointed it to an open source project's svn (keepassx) just to try.

Hudson downloaded everything from the repository and marked blue for successful build.
aren't i suppose to be able to execute the software now somehow ? i thought once it is built i can run it, but i can't find any executable in the project's home page under hudson user home dir.

thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

思念满溢 2024-11-02 19:01:40

Hudson/Jenkins 构建分为三个步骤:

  • 更新工作区中的源代码
  • 运行构建
  • 发布构建工件

听起来您已经完成了第 1 步。

如果您链接到的项目有构建说明(ant、maven 等),您可以将这些作为构建步骤输入到项目配置的“构建”部分。

然后,您可以获取生成的文件(“工件”——jar、exe、so、bin 等)并使用“构建后操作”发布这些文件,或者如果需要,您可以直接从工作区文件系统获取它们。

假设构建工件是可执行文件,您可以在从 Hudson 下载它后运行它,或者进行构建步骤或构建后操作,将其移动到适当的位置并运行它。

在尝试让 Hudson 处理构建之前,它有助于在本地运行构建 - 然后您就知道构建步骤是什么,以及最终的构建工件是什么。

A Hudson/Jenkins build breaks down into three steps:

  • update source code in workspace
  • run build
  • publish build artifacts

It sounds like you've got step 1 covered.

If the project you linked to has instructions for building (ant, maven, etc.), you can enter these as build steps into the "Build" section of the project configuration.

You can then take the resulting files ("artifacts"--jar, exe, so, bin, whatever) and publish these using the "Post-build Actions", or if necessary you can grab them directly from the workspace filesystem.

Assuming the build artifact was an executable, you could then run it after downloading it from Hudson, or make a build step or post-build action which moved it into the appropriate location and ran it.

It helps to run the build locally before trying to get Hudson to handle it--then you know what the build steps are, and what the final build artifacts are.

最后的乘客 2024-11-02 19:01:40

jenkins/hudson 如何知道如何“执行”您告诉它下载和构建的任意包?您可以编写一个程序或脚本来运行您想要运行的内容,然后创建一个下游作业(例如)来执行此操作。

How would jenkins/hudson know how to 'execute' some arbitrary package that you told it to download and build? It's up to you to write a program or script to run what you want to run, and then make a downstream job (for example) to do so.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文