Hudson持续集成图形桌面应用和从节点

发布于 2024-07-27 05:34:13 字数 174 浏览 5 评论 0原文

我目前正在尝试使用 hudson 来持续集成基于 eclipse 的桌面应用程序。 该应用程序的测试是使用Junit实现的,并在运行时打开一些窗口。 目前,我在 Linux 从属节点上启动这些测试时遇到一些困难,因为显示未导出。

有人可以帮助配置 hudson 在 Linux 从节点上执行图形测试吗?

I am currently trying to use hudson for continuous integration of an eclipse-based desktop application.
The tests of this application are implemented with Junit and open some windows when running.
I am currently facing some difficulties with launching these tests on a linux slave node because display is not exported.

Could someone help to configure hudson to perform graphical tests on linux slave nodes ?

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

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

发布评论

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

评论(2

烂柯人 2024-08-03 05:34:13

设置无头模式实用/有用吗?

java -Djava.awt.headless=true

这告诉 JVM 您没有打开显示器。

Is setting the headless mode practical/of use ?

java -Djava.awt.headless=true

That tells the JVM you don't have a open display.

拔了角的鹿 2024-08-03 05:34:13

看看vncserver。

具体来说,如果您的构建使用 Ant,您可以使用此脚本来启动 Ant(和 vncwith):

#!/bin/sh
vncserver ${VNCDISPLAY} && export DISPLAY=${VNCDISPLAY} && $ANT_HOME/bin/ant $@;
vncserver -kill ${VNCDISPLAY}

您需要将唯一的环境变量 VNCDISPLAY 设置为类似:“localhost:11”
对于每个计划。

Have a look at vncserver.

Specifically, if your build is using Ant, you could this script to start Ant (and the vncwith) with:

#!/bin/sh
vncserver ${VNCDISPLAY} && export DISPLAY=${VNCDISPLAY} && $ANT_HOME/bin/ant $@;
vncserver -kill ${VNCDISPLAY}

You will need to set a unique environment variable VNCDISPLAY to something like: "localhost:11"
for each plan.

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