用Jenkins建立Unity项目失败

我正在尝试在Mac OS Server上使用Jenkins构建Unity项目。但是当我尝试运行以下脚本时

/Applications/Unity/Unity.app/Contents/MacOS/Unity -quit -batchmode ${PROJECT_PATH} -executeMethod BuildScript.DevelopmentBuild

脚本显示了这一点,

_RegisterApplication(),无法建立与WindowServer的默认连接,_CGSDefaultConnection()为NULL。

有谁知道如何解决这个问题?

回答:

尝试从终端写:

sudo launchctl unload /Library/LaunchDaemons/org.jenkins-ci.plist

sudo mv /Library/LaunchDaemons/org.jenkins-ci.plist /Library/LaunchAgents/org.jenkins-ci.plist

然后注销并再次登录。

现在,Jenkins将作为代理运行,并且可以访问WindowServer。

以上是 用Jenkins建立Unity项目失败 的全部内容, 来源链接: utcz.com/qa/405083.html

回到顶部