2014-09-21 116 views
2

我使用的是詹金斯与Perforce公司建立一个Maven项目,我需要使用maven释放插件。我已经配置了我的项目,并且构建工作进展顺利,直到我尝试使用相关的Jenkins插件使用maven release插件。干运行一切都很顺利,但是当试图发布时,我得到了这个令人讨厌的错误消息(下图)。由于某些原因,Jenkins无法连接到P4服务器。此外,还会检查“在环境中公开P4PASSWD”。詹金斯和Perforce密码问题

编辑 - 回答Technext的问题

  • 当你说干运行,你执行它使用詹金斯只或命令行? 两个
  • 确切位置在哪里,你设置P4密码?在“全局凭据”部分? 在项目配置,在源代码管理 - > Perforce->密码
  • 你在哪里得到的“揭露P4PASSWD环境”的选项? 同一个地方
  • 在上面的日志中,这条线设置为P4 "d:\program files\perforce\p4.exe" set密码? 这一行公开了P4参数 - 所有这些参数(包括P4PASSWD)都已正确设置。我从显而易见的原因,除去实际值...

这是错误消息:

Started by user David 
[EnvInject] - Loading node environment variables. 
Building on master in workspace X:\hudson\jobs\myproject\workspace 
Using master perforce client: myproject 
[workspace] $ "D:\Program Files\Perforce\p4.exe" workspace -o myproject 
[workspace] $ "D:\Program Files\Perforce\p4.exe" login -a -p 
[workspace] $ "D:\Program Files\Perforce\p4.exe" -P *** workspace -o myproject 
Last build changeset: 1062732 
[workspace] $ "D:\Program Files\Perforce\p4.exe" -P *** changes -s submitted -m 1 //myproject/... 
Sync'ing workspace to changelist 1062732 (forcing sync of unchanged files). 
[workspace] $ "D:\Program Files\Perforce\p4.exe" -P *** -s sync -f //myproject/[email protected] 
Sync complete, took 108 ms 
[workspace] $ cmd /c call D:\apache-tomcat-6\temp\hudson368187580614800030.bat 

X:\hudson\jobs\myproject\workspace>"d:\program files\perforce\p4.exe" set 
P4CLIENT=myproject 
P4PASSWD=*** 
P4PORT=*** 
P4USER=*** 

X:\hudson\jobs\myproject\workspace>exit 0 
Parsing POMs 
Downloaded artifact ... 
[workspace] $ D:/ins/Java/jdk1.7.0_10.x64/bin/java -DcreateChecksum=true -cp X:\hudson\plugins\maven-plugin\WEB-INF\lib\maven31-agent-1.4.jar;X:\hudson\tools\hudson.tasks.Maven_MavenInstallation\Maven_3.1.1\boot\plexus-classworlds-2.5.1.jar;X:\hudson\tools\hudson.tasks.Maven_MavenInstallation\Maven_3.1.1/conf/logging jenkins.maven3.agent.Maven31Main X:\hudson\tools\hudson.tasks.Maven_MavenInstallation\Maven_3.1.1 D:\apache-tomcat-6\webapps\hudson\WEB-INF\lib\remoting-2.37.jar X:\hudson\plugins\maven-plugin\WEB-INF\lib\maven31-interceptor-1.4.jar X:\hudson\plugins\maven-plugin\WEB-INF\lib\maven3-interceptor-commons-1.4.jar 51470 
<===[JENKINS REMOTING CAPACITY]===>channel started 
Executing Maven: -B -f X:\hudson\jobs\myproject\workspace\pom.xml -DdevelopmentVersion=0.0.2-SNAPSHOT -DreleaseVersion=0.0.1 -Dresume=false release:prepare release:perform -X 
Apache Maven 3.1.1 (0728685237757ffbf44136acec0402957f723d9a; 2013-09-17 18:22:22+0300) 
Maven home: X:\hudson\tools\hudson.tasks.Maven_MavenInstallation\Maven_3.1.1 
Java version: 1.7.0_10, vendor: Oracle Corporation 
Java home: D:\ins\Java\jdk1.7.0_10.x64\jre 
Default locale: en_US, platform encoding: Cp1252 
OS name: "windows server 2008", version: "6.0", arch: "amd64", family: "windows" 
[INFO] Error stacktraces are turned on. 
[DEBUG] Reading global settings from X:\hudson\tools\hudson.tasks.Maven_MavenInstallation\Maven_3.1.1\conf\settings.xml 
[DEBUG] Reading user settings from C:\...\.m2\settings.xml 
[INFO] Scanning for projects... 
[INFO] Downloading: ... 
[INFO] Downloaded: ... 
[INFO] ------------------------------------------------------------------------ 
[INFO] Reactor Build Order: 
[INFO] 
[INFO] proj-parent 
[INFO] proja 
[INFO] projb 
[INFO] projc 
[INFO] test-reactor 
[INFO]                   
[INFO] ------------------------------------------------------------------------ 
[INFO] Building test-reactor 0.0.1-SNAPSHOT 
[INFO] ------------------------------------------------------------------------ 
[INFO] 
[INFO] --- maven-release-plugin:2.5:prepare (default-cli) @ test-reactor --- 
[INFO] Verifying that there are no local modifications... 
[INFO] ignoring changes on: **\release.properties, **\pom.xml.next, **\pom.xml.releaseBackup, **\pom.xml.backup, **\pom.xml.branch, **\pom.xml.tag 
[INFO] No password found, proceeding without it. 
[DEBUG] SCM path in pom: //depot/myproject 
[DEBUG] Executing: cmd.exe /X /C "p4 -p *** where X:\hudson\jobs\myproject\workspace\pom.xml" 
[DEBUG] Perforce password (P4PASSWD) invalid or unset. 
[DEBUG] cannot find depot => using //depot/myproject 
[DEBUG] Executing cmd.exe /X /C "p4 -d X:\hudson\jobs\myproject\workspace -p *** opened //depot/myproject/..." 
[ERROR] CommandLineException Exit code: 1 - Perforce password (P4PASSWD) invalid or unset. 

编辑2 - 打印环境变量

每Technext要求,我当调用release时,已经打印了相关的P4环境变量:prepare。这些变量都显示正确的值(这里是隐藏的),但运行thep4.exe事后声称P4PASSWD未设置

[INFO] Executing tasks 
Build sequence for target(s) `main' is [main] 
Complete build sequence is [main, ] 

main: 
    [echo] P4CLIENT [myproject] 
    [echo] P4PASSWD [***] 
    [echo] P4PORT [***] 
    [echo] P4USER [***] 
[INFO] Executed tasks 
Notifying upstream projects of job completion 
Join notifier requires a CauseAction 
[INFO]                   
[INFO] ------------------------------------------------------------------------ 
[INFO] Building test-reactor 0.0.1-SNAPSHOT 
[INFO] ------------------------------------------------------------------------ 
[INFO] 
[INFO] --- maven-release-plugin:2.5:prepare (default-cli) @ test-reactor --- 
[INFO] Verifying that there are no local modifications... 
[INFO] ignoring changes on: **\release.properties, **\pom.xml.next, **\pom.xml.releaseBackup, **\pom.xml.backup, **\pom.xml.branch, **\pom.xml.tag 
[INFO] No password found, proceeding without it. 
[DEBUG] SCM path in pom: //depot/myproject 
[DEBUG] Executing: cmd.exe /X /C "p4 -p *** where ***\pom.xml" 
[DEBUG] Perforce password (P4PASSWD) invalid or unset. 
[DEBUG] cannot find depot => using //depot/myproject 
[DEBUG] Executing cmd.exe /X /C "p4 -d ****\workspace -p *** opened //depot/myproject/..." 
[ERROR] CommandLineException Exit code: 1 - Perforce password (P4PASSWD) invalid or unset. 
+1

当你说'干run',你执行它使用詹金斯只或_command line_?你到底在哪里设置P4的密码?在“全局凭据”部分?你在哪里可以选择'在环境中公开P4PASSWD'?由于我几年前使用Perforce的经验有限,我记得我们曾经有一个设置,其中一个schedular用于每天在构建箱上设置密码。在上面的日志中,这一行是设置P4'“d:\ program files \ perforce \ p4.exe”set'的密码吗? – Technext 2014-09-21 12:48:10

+0

@Technext谢谢,请参阅编辑的问题 – 2014-09-21 18:26:25

+0

由于字符限制,我不得不部分分解我的陈述。如果您已经启用'在环境中公开P4PASSWD',为什么要使用'“d:\ program files \ perforce \ p4.exe”set'命令?你是通过批处理文件调用这个_set_命令,还是使用'Build> Add build step> Execute Windows batch command'节? – Technext 2014-09-22 06:29:32

回答

4

最后得到了一个解决方案。 Jenkins perforce插件进行登录并发布一张票,因此我必须将-Dpassword=${P4TICKET}添加到“发布目标和选项”字段。它会导致perforce SCM提供商运行带有-P <P4TICKET>标志的p4命令。

感谢@Technext的协助。

+0

很高兴看到你终于搞定了。请将您的解决方案标记为答案,以便可以帮助其他人。 :) – Technext 2014-10-01 06:13:41