[JIRA] (JENKINS-54632) dsl job doesn't create a build step for Performance Center using Jenkins API

2019-01-04 Thread edkar...@hotmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Eduard Karlin commented on  JENKINS-54632  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: dsl job doesn't create a build step for Performance Center using Jenkins API   
 

  
 
 
 
 

 
 Hey Daniel, Thanks for all your information! I just came from vacation and trying to debug again this issue. So far not working, but I'll try a few different things. We are running so many different scripts( ant, ruby, maven and etc) using different plugins, and somehow only integration with Performance center isn't working. I tried to get a pipeline syntax, but that url finds nothing. Should I add some specific plugin for that also? http://cdlvdiw703202:8080/job/pc_pipeline/pipeline-syntax/ Problem accessing /job/pc_pipeline/pipeline-syntax/. Reason:  Not Found Thanks, Eduard.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-54632) dsl job doesn't create a build step for Performance Center using Jenkins API

2018-12-11 Thread daniel.da...@hpe.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Danan commented on  JENKINS-54632  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: dsl job doesn't create a build step for Performance Center using Jenkins API   
 

  
 
 
 
 

 
 Hi Eduard, Please look at the attached file 'used_dsl_script.txt'. I used it in a job having a "Process Job DSLs" build step configured to run a provided DSL Script  (see attached configuring dsl script.png file). I then run the job and it passes (see attached "running job.png"). When i look at the list of jobs in my jenkins environment, I do see 6 additional jobs created by running this build (see attached file "additional jobs created.png"). When i review one of the jobs supposed to contain the configuration of one of the test executions, it looks OK (see attached file "Configuration of scenario 1 job created by DSL script.png"). I didn't try to run it (and in any case it would have failed as i provided wrong input data in the tests array defined in the dsl script) but i believe those scenario jobs would have been OK. I used the web site https://job-dsl.herokuapp.com/ to verify that DSL was indeed creating the config.xml according to what was expected. I am not sure how much reliable it is but it helped me overcome some errors while trying to find the correct syntax. Basically, the script should contain the following section for correctly creating the build step (in your case, please modify the bold section in the following script):   configure { project -> project / builders << 'com.microfocus.application.automation.tools.run.PcBuilder' (plugin: 'hp-application-automation-tools-plugin@5.5.3-beta-SNAPSHOT')  { 'HTTPSProtocol' 'false' 'addRunToTrendReport' 'ASSOCIATED' 'almDomain' 'MYDOMAIN' 'almProject' 'MYPROJECT' 'autoTestInstanceID' 'MANUAL' 'credentialsId' '98dce5e1-91e9-4299-85a0-c306059f6034' 'credentialsProxyId' '' 'description' test.description 'pcServerName' 'MYPCSERVER' 'postRunAction' 'COLLATE_AND_ANALYZE' 'proxyOutURL' '' 'retry' 'NO_RETRY' 'retryDelay' '5' 'retryOccurrences' '3' 'serverAndPort' 'http://MyJenkinsServer:8080' 'statusBySLA' 'false' 'testId' test.testId 'testInstanceId' test.testInstanceId 'timeslotDurationHours' test.hours 'timeslotDurationMinutes' test.minutes 'trendReportId' '' 'vudsMode' 'false' }  } Give it a try. If you need to figure out which values to use for fields such as 'credentialsId', 'serverAndPort' or anything else, help yourself with pipeline syntax in your Jenkins server: /job/pc_pipeline/pipeline-syntax/, "select pcBuild: Execute performance test using Performance Center", provide the values you would usually provide to have correct input, then press the "Generate Pipeline Script" button and base on the generated script to provide values to your DSL script. regards, Daniel  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
  

[JIRA] (JENKINS-54632) dsl job doesn't create a build step for Performance Center using Jenkins API

2018-12-11 Thread daniel.da...@hpe.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Danan updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-54632  
 
 
   dsl job doesn't create a build step for Performance Center using Jenkins API   
 

  
 
 
 
 

 
Change By: 
 Daniel Danan  
 
 
Attachment: 
 configuring dsl script.png  
 
 
Attachment: 
 running job.png  
 
 
Attachment: 
 used_dsl_script.txt  
 
 
Attachment: 
 additional jobs created.png  
 
 
Attachment: 
 Configuration of scenario 1 job created by DSL script.png  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-54632) dsl job doesn't create a build step for Performance Center using Jenkins API

2018-12-10 Thread edkar...@hotmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Eduard Karlin commented on  JENKINS-54632  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: dsl job doesn't create a build step for Performance Center using Jenkins API   
 

  
 
 
 
 

 
 Here is  source code( an extract from my code)   configure { project -> project / builders << {'com.microfocus.application.automation.tools.run.PcBuilder'(plugin: 'hp-application-automation-tools-plugin@5.5') {  'pcBuild'  { 'pcServerName' 'cdlpfpcsvr04.es.ad.adp.com' 'credentialsId' '54661f0e-0a57-406e-abf4-80d8e3cd776b' '*retry' 'NO_RETRY' 'retryDelay' '5' 'retryOccurrences' '3' 'almDomain' 'NAS' 'almProject' 'ACA' 'testId' test.testId 'testInstanceId' test.testInstanceId 'timeslotDurationHours' test.hours 'timeslotDurationMinutes' test.minutes 'postRunAction' 'COLLATE_AND_ANALYZE' 'vudsMode' 'false' delegate.description test.description }  'statusBySLA' 'false' 'runId' 0  } } }    
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-54632) dsl job doesn't create a build step for Performance Center using Jenkins API

2018-12-10 Thread edkar...@hotmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Eduard Karlin commented on  JENKINS-54632  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: dsl job doesn't create a build step for Performance Center using Jenkins API   
 

  
 
 
 
 

 
   Hi Daniel, unfortunately it's not working. On my old server I'm getting the build without any parameters. It's the same issue that I had before. But on a new server I'm getting a new error while running an updated dsl script, which actually prevents me from from building a job. Do I need to change something in config.xml? http://cdlpfacavap0001:8080/view/dsl-jobs/job/interactive-dsl/73/console > C:\Program Files\Git\bin\git.exe checkout -f 387cb94c710651f62189f51e8f3152802bb6b51fCommit message: "changing parameters for microfocus plugin" > C:\Program Files\Git\bin\git.exe rev-list --no-walk 77a41bd25937859d8f2d7c15197e993d4296226b # timeout=10Processing DSL script seed_interactive.groovyERROR: java.io.IOException: Failed to persist config.xmlFinished: FAILURE  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-54632) dsl job doesn't create a build step for Performance Center using Jenkins API

2018-12-10 Thread daniel.da...@hpe.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Danan edited a comment on  JENKINS-54632  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: dsl job doesn't create a build step for Performance Center using Jenkins API   
 

  
 
 
 
 

 
 Hi Eduard, Please change:  com.hp.application.automation.tools.run.PcBuilder to com.microfocus.application.automation.tools.run.PcBuilderand then use  (do not use the ID value from the example below, you can get the correct ID for the credentials of your user from jenkins home -> Credentials -> ID of a credential record already defined and that you will need to define):*'credentialsId' 'b0f2c3bd-9fdb-4858-8f25-d23ddfa8f5f8'*instead of  two fields:  _ *'almUserName' 'jenkinsACA' *_   _* 'almPassword'(class:"com.hp.application.automation.tools.model.SecretContainerImpl"){ *_   _* '__secret' 'Dsr90dh/+d6p3F8Mi5p4897Scnz/rUOsGF8TEsxzRxI=' *_   _* }* _ Also add the parameter:*'retry' 'NO_RETRY'*regards,Daniel  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-54632) dsl job doesn't create a build step for Performance Center using Jenkins API

2018-12-10 Thread daniel.da...@hpe.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Danan edited a comment on  JENKINS-54632  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: dsl job doesn't create a build step for Performance Center using Jenkins API   
 

  
 
 
 
 

 
 Hi Eduard, Please change:  com.hp.application.automation.tools.run.PcBuilder to com.microfocus.application.automation.tools.run.PcBuilderand then use  (do not use the ID value from the example below, you can get the correct ID for the credentials of your user from jenkins home -> Credentials -> ID of a credential record already defined and that you will need to define):*'credentialsId' 'b0f2c3bd-9fdb-4858-8f25-d23ddfa8f5f8'*instead of  two fields:* __ 'almUserName' 'jenkinsACA''almPassword'(class:"com.hp.application.automation.tools.model.SecretContainerImpl"){'__secret' 'Dsr90dh/+d6p3F8Mi5p4897Scnz/rUOsGF8TEsxzRxI='} _ *Also add the parameter:*'retry' 'NO_RETRY'*regards,Daniel  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-54632) dsl job doesn't create a build step for Performance Center using Jenkins API

2018-12-10 Thread daniel.da...@hpe.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Danan edited a comment on  JENKINS-54632  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: dsl job doesn't create a build step for Performance Center using Jenkins API   
 

  
 
 
 
 

 
 Hi Eduard, Please change:  com.hp.application.automation.tools.run.PcBuilder to com.microfocus.application.automation.tools.run.PcBuilderand then use  (do not use the ID value from the example below, you can get the correct ID for the credentials of your user from jenkins home -> Credentials -> ID of a credential record already defined and that you will need to define): * 'credentialsId' 'b0f2c3bd-9fdb-4858-8f25-d23ddfa8f5f8' * instead of  two fields: _ *__ 'almUserName' 'jenkinsACA' ' almPassword'(class:"com.hp.application.automation.tools.model.SecretContainerImpl"){'__secret' 'Dsr90dh/+d6p3F8Mi5p4897Scnz/rUOsGF8TEsxzRxI='}  _ *  and Also  add  the parameter:  * 'retry' 'NO_RETRY' *   regards,Daniel  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-54632) dsl job doesn't create a build step for Performance Center using Jenkins API

2018-12-10 Thread daniel.da...@hpe.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Danan commented on  JENKINS-54632  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: dsl job doesn't create a build step for Performance Center using Jenkins API   
 

  
 
 
 
 

 
 Hi Eduard, Please change:  com.hp.application.automation.tools.run.PcBuilder to com.microfocus.application.automation.tools.run.PcBuilder and then use (do not use the ID value from the example below, you can get the correct ID for the credentials of your user from jenkins home -> Credentials -> ID of a credential record already defined and that you will need to define): 'credentialsId' 'b0f2c3bd-9fdb-4858-8f25-d23ddfa8f5f8' instead of two fields: _'almUserName' 'jenkinsACA' almPassword'(class:"com.hp.application.automation.tools.model.SecretContainerImpl") { '__secret' 'Dsr90dh/+d6p3F8Mi5p4897Scnz/rUOsGF8TEsxzRxI=' } _ and add 'retry' 'NO_RETRY' regards, Daniel  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-54632) dsl job doesn't create a build step for Performance Center using Jenkins API

2018-12-06 Thread edkar...@hotmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Eduard Karlin commented on  JENKINS-54632  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: dsl job doesn't create a build step for Performance Center using Jenkins API   
 

  
 
 
 
 

 
 It happens on old server with older version of plugin. On a new server I can't even create a build step with the latest version of plugin. I can obviously create manually those Jenkins jobs, but it will be difficult to manage any changes without dsl scripts.   
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-54632) dsl job doesn't create a build step for Performance Center using Jenkins API

2018-12-06 Thread edkar...@hotmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Eduard Karlin updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-54632  
 
 
   dsl job doesn't create a build step for Performance Center using Jenkins API   
 

  
 
 
 
 

 
Change By: 
 Eduard Karlin  
 
 
Attachment: 
 image-2018-12-06-16-47-20-776.png  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-54632) dsl job doesn't create a build step for Performance Center using Jenkins API

2018-12-06 Thread edkar...@hotmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Eduard Karlin commented on  JENKINS-54632  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: dsl job doesn't create a build step for Performance Center using Jenkins API   
 

  
 
 
 
 

 
 Daniel Gront Dsl/Groovy scripts contains new parameters, but they aren't being passed to the build steps..    
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-54632) dsl job doesn't create a build step for Performance Center using Jenkins API

2018-12-03 Thread daniel.gr...@microfocus.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Gront commented on  JENKINS-54632  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: dsl job doesn't create a build step for Performance Center using Jenkins API   
 

  
 
 
 
 

 
 Eduard Karlin, is the dsl file contains newly generated configuration from the pipeline syntax generator? Daniel Danan, for some reason he has this line which doesn't make sense  project / builders << {'com.hp.application.automation.tools.run.PcBuilder'(plugin: 'hp-application-automation-tools-plugin@5.5'), would replacing all the com.hp to com.microfocus solve this?  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-54632) dsl job doesn't create a build step for Performance Center using Jenkins API

2018-12-03 Thread daniel.gr...@microfocus.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Gront updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-54632  
 
 
   dsl job doesn't create a build step for Performance Center using Jenkins API   
 

  
 
 
 
 

 
Change By: 
 Daniel Gront  
 
 
Environment: 
 Windows 2012 Server, groovy dsl scripts are in BitBucket , plugin version 5.5  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-54632) dsl job doesn't create a build step for Performance Center using Jenkins API

2018-12-03 Thread daniel.gr...@microfocus.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Gront updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-54632  
 
 
   dsl job doesn't create a build step for Performance Center using Jenkins API   
 

  
 
 
 
 

 
Change By: 
 Daniel Gront  
 
 
Labels: 
 PerformanceCenter  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-54632) dsl job doesn't create a build step for Performance Center using Jenkins API

2018-12-03 Thread daniel.gr...@microfocus.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Gront updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-54632  
 
 
   dsl job doesn't create a build step for Performance Center using Jenkins API   
 

  
 
 
 
 

 
Change By: 
 Daniel Gront  
 
 
Component/s: 
 hp-application-automation-tools-plugin  
 
 
Component/s: 
 micro-focus-performance-center-integration-plugin  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-54632) dsl job doesn't create a build step for Performance Center using Jenkins API

2018-12-03 Thread daniel.gr...@microfocus.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Gront updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-54632  
 
 
   dsl job doesn't create a build step for Performance Center using Jenkins API   
 

  
 
 
 
 

 
Change By: 
 Daniel Gront  
 
 
Issue Type: 
 Improvement Bug  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-54632) dsl job doesn't create a build step for Performance Center using Jenkins API

2018-12-03 Thread edkar...@hotmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Eduard Karlin commented on  JENKINS-54632  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: dsl job doesn't create a build step for Performance Center using Jenkins API   
 

  
 
 
 
 

 
 and on my old server I had the older version: 
 

 
 
  
Micro Focus Application Automation Tools This plugin allows integration with HP ALM, HP Unified Functional Testing, HP LoadRunner and HP Performance cente 
4.0.1 
 

 
  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-54632) dsl job doesn't create a build step for Performance Center using Jenkins API

2018-12-03 Thread edkar...@hotmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Eduard Karlin commented on  JENKINS-54632  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: dsl job doesn't create a build step for Performance Center using Jenkins API   
 

  
 
 
 
 

 
 Daniel Gront  
 

 
 
  
Micro Focus Application Automation Tools This plugin enables integration with ALM, ALM Octane, Unified Functional Testing, LoadRunner, and Performance Center. 
5.5 
 

 
  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-54632) dsl job doesn't create a build step for Performance Center using Jenkins API

2018-12-01 Thread daniel.gr...@microfocus.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Gront commented on  JENKINS-54632  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: dsl job doesn't create a build step for Performance Center using Jenkins API   
 

  
 
 
 
 

 
 Is it Micro Focus Application Automation plugin or micro-focus-performance-center-integration-plugin?  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-54632) dsl job doesn't create a build step for Performance Center using Jenkins API

2018-11-27 Thread edkar...@hotmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Eduard Karlin commented on  JENKINS-54632  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: dsl job doesn't create a build step for Performance Center using Jenkins API   
 

  
 
 
 
 

 
 Hi Daniel,   "pcBuild" actually worked on my old jenkins server and I was able to build a pipeline with all fields. But I can't pass any related parameters, all fields are empty. I can't generate a pipeline on my new server. So something is still wrong with format and maybe you have some ideas regarding this and can provide me a simple code example. Also wondering if somebody else had the similar issues. I tried so many different approaches, but none of them worked.  what is wrong with this format? // new changes for 5.5 version plugin    // new changes for 5.5 version plugin                             'credentialsId' 'jenkinsACA' (class:"com.hp.application.automation.tools.model.SecretContainerImpl"){ '__secret' 'Dsr90dh/+d6p3F8Mi5p4897Scnz/rUOsGF8TEsxzRxI=' }                         'credentialsProxyId' 'jenkinsACA' (class:"com.hp.application.automation.tools.model.SecretContainerImpl"){ '__secret' 'Dsr90dh/+d6p3F8Mi5p4897Scnz/rUOsGF8TEsxzRxI=' } '*retry' 'NO_RETRY'                         'retryDelay' '5'                         'retryOccurrences' '3'                         // --- 'almDomain' 'NAS' 'almProject' 'ACA' 'testId' test.testId 'testInstanceId' test.testInstanceId 'timeslotDurationHours' test.hours                        'timeslotDurationMinutes' test.minutes  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-54632) dsl job doesn't create a build step for Performance Center using Jenkins API

2018-11-26 Thread edkar...@hotmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Eduard Karlin assigned an issue to Daniel Danan  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-54632  
 
 
   dsl job doesn't create a build step for Performance Center using Jenkins API   
 

  
 
 
 
 

 
Change By: 
 Eduard Karlin  
 
 
Assignee: 
 Daniel  MS  Danan  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-54632) dsl job doesn't create a build step for Performance Center using Jenkins API

2018-11-26 Thread edkar...@hotmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Eduard Karlin assigned an issue to Daniel MS  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-54632  
 
 
   dsl job doesn't create a build step for Performance Center using Jenkins API   
 

  
 
 
 
 

 
Change By: 
 Eduard Karlin  
 
 
Assignee: 
 Eduard Karlin Daniel MS  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-54632) dsl job doesn't create a build step for Performance Center using Jenkins API

2018-11-26 Thread edkar...@hotmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Eduard Karlin assigned an issue to Eduard Karlin  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-54632  
 
 
   dsl job doesn't create a build step for Performance Center using Jenkins API   
 

  
 
 
 
 

 
Change By: 
 Eduard Karlin  
 
 
Assignee: 
 Daniel Danan Eduard Karlin  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-54632) dsl job doesn't create a build step for Performance Center using Jenkins API

2018-11-26 Thread edkar...@hotmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Eduard Karlin commented on  JENKINS-54632  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: dsl job doesn't create a build step for Performance Center using Jenkins API   
 

  
 
 
 
 

 
 Hi Daniel, Somehow it's still not working for me. Now I can't even generate this build step on my old Jenkins Server. Maybe it's an issue wit pipeline name step? In the current code I see: 'pcModel'  { 'pcServerName' 'cdlpfpcsvr04.es.ad.adp.com'  'almUserName' 'jenkinsACA' 'almPassword' 'adpaca'  But you mentioned "pcBuild". Was it changed recently from "pcModel" to "pcBuild"? Maybe you also have some sample of groovy code which can be used to build this step? post build steps are generated with no issues: configure { project -> configure { project -> project / publishers << {'com.hp.application.automation.tools.results.RunResultRecorder'(plugin:"hp-application-automation-tools-plugin@4.0.1"){ '__resultsPublisherModel' { 'archiveTestResultsMode' 'PUBLISH_HTML_REPORT' }  } } }   publishers{ downstreamParameterized {             trigger("Report for ${jobId}") {                 condition('SUCCESS')             }        } }    
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-54632) dsl job doesn't create a build step for Performance Center using Jenkins API

2018-11-15 Thread daniel.da...@hpe.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Danan updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-54632  
 
 
   dsl job doesn't create a build step for Performance Center using Jenkins API   
 

  
 
 
 
 

 
Change By: 
 Daniel Danan  
 
 
Attachment: 
 pipeline_syntax.png  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-54632) dsl job doesn't create a build step for Performance Center using Jenkins API

2018-11-15 Thread daniel.da...@hpe.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Danan commented on  JENKINS-54632  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: dsl job doesn't create a build step for Performance Center using Jenkins API   
 

  
 
 
 
 

 
 Hi Eduard, I believe you can get all the parameter from generating a pipeline syntax for the "pcBuild" sample step ( /job/pc_pipeline/pipeline-syntax/). The new parameters are in bold and red below.  I also forgot to mention that, due to security requirements, the parameters related to the authentication have been modified and the almUserName, almPassword are replaced by credentialsId (same for proxy credentials parameters): pcBuild  HTTPSProtocol: false,  almDomain: '',  almProject: '', autoTestInstanceID: 'AUTO',  credentialsId: '',  credentialsProxyId: '',  description: '',  pcServerName: '',  postRunAction: 'COLLATE',  proxyOutURL: '',  *retry: 'NO_RETRY',  retryDelay: '5',  retryOccurrences: '3', * serverAndPort: 'http://myjenkinserver:8080',  statusBySLA: false,  testId: '',  testInstanceId: '',  timeslotDurationHours: '0',  timeslotDurationMinutes: '30',  trendReportId: '',  vudsMode: false regards, Daniel  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-54632) dsl job doesn't create a build step for Performance Center using Jenkins API

2018-11-14 Thread edkar...@hotmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Eduard Karlin updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-54632  
 
 
   dsl job doesn't create a build step for Performance Center using Jenkins API   
 

  
 
 
 
 

 
Change By: 
 Eduard Karlin  
 

  
 
 
 
 

 
 I set up a new Jenkins server {color:#a94442} 2.138.1( previous server had Jenkins version 1.7, micro focus plugin 4.0.1) {color} and installed this plugin version 5.5 to integrate our Load Runner scripts with jenkins. We are using dsl scripts to build all Jenkins jobs. Somehow my dsl job doesn't create a build step for Performance Center anymore and I see no specific error messages anywhere. Maybe url for API changed, or this new version of plugin requires me to update code. On my old server this script works just fine. Here is part of groovy script which isn't working anymore. Other steps related to Bitbucket/scm and post build work okay. I'm attaching groovy  script also configure { project -> project / builders << {'com.hp.application.automation.tools.run.PcBuilder'(plugin: 'hp-application-automation-tools-plugin@5.5') { //{'com.microfocus.application.automation.tools.settings.OctaneServerSettingsBuilder_-OctaneDescriptorImpl'(plugin: 'hp-application-automation-tools-plugin@5.5') { 'pcModel' { 'pcServerName' ' [cdlpfpcsvr04.es.ad.adp.com|http://cdlpfpcsvr04.es.ad.adp.com/] server ' 'almUserName' 'jenkinsACA' //'almPassword' 'adpaca' //'almPassword'(class:"com.hp.application.automation.tools.model.SecretContainerImpl") {  {  // '__secret' 'SVgLEvbkajdZLrVegImgVQ=='   //}   'almPassword'(class:"com.hp.application.automation.tools.model.SecretContainerImpl") {  {  '__secret' 'Dsr90dh/+d6p3F8Mi5p4897Scnz/rUOsGF8TEsxzRxI='   }   'almDomain' 'NAS' 'almProject' 'ACA' 'testId' test.testId 'testInstanceId' test.testInstanceId 'timeslotDuration' {  {  'Hours' test.hours   'Minutes' test.minutes   }   'postRunAction' 'COLLATE_AND_ANALYZE' 'vudsMode' 'false' delegate.description test.description } 'statusBySLA' 'false' 'runId' 0  } } }  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
   

[JIRA] (JENKINS-54632) dsl job doesn't create a build step for Performance Center using Jenkins API

2018-11-14 Thread edkar...@hotmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Eduard Karlin commented on  JENKINS-54632  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: dsl job doesn't create a build step for Performance Center using Jenkins API   
 

  
 
 
 
 

 
 Hi Daniel, What is the name of this parameter? And how I can find a list of all required parameters for performance center builds? This code was written before me and I'm trying to find all this information now. Thanks, Eduard.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-54632) dsl job doesn't create a build step for Performance Center using Jenkins API

2018-11-14 Thread daniel.da...@hpe.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Daniel Danan commented on  JENKINS-54632  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: dsl job doesn't create a build step for Performance Center using Jenkins API   
 

  
 
 
 
 

 
 Hi Eduard, your assumption is correct: an additional feature was added to this plugin and it requires additional parameter (retrying to execute test after a waiting time when test fails to run). regards, Daniel  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-54632) dsl job doesn't create a build step for Performance Center using Jenkins API

2018-11-14 Thread edkar...@hotmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Eduard Karlin created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-54632  
 
 
   dsl job doesn't create a build step for Performance Center using Jenkins API   
 

  
 
 
 
 

 
Issue Type: 
  Improvement  
 
 
Assignee: 
 Daniel Danan  
 
 
Attachments: 
 seed_interactive.groovy  
 
 
Components: 
 micro-focus-performance-center-integration-plugin  
 
 
Created: 
 2018-11-14 17:38  
 
 
Environment: 
 Windows 2012 Server, groovy dsl scripts are in BitBucket  
 
 
Priority: 
  Blocker  
 
 
Reporter: 
 Eduard Karlin  
 

  
 
 
 
 

 
 I set up a new Jenkins server  2.138.1( previous server had Jenkins version 1.7, micro focus plugin 4.0.1)  and installed this plugin version 5.5 to integrate our Load Runner scripts with jenkins. We are using dsl scripts to build all Jenkins jobs. Somehow my dsl job doesn't create a build step for Performance Center anymore and I see no specific error messages anywhere. Maybe url for API changed, or this new version of plugin requires me to update code. On my old server this script works just fine. Here is part of groovy script which isn't working anymore. Other steps related to Bitbucket/scm and post build work okay. I'm attaching groovy  script also   configure { project -> project / builders << {'com.hp.application.automation.tools.run.PcBuilder'(plugin: 'hp-application-automation-tools-plugin@5.5') { //{'com.microfocus.application.automation.tools.settings.OctaneServerSettingsBuilder_-OctaneDescriptorImpl'(plugin: 'hp-application-automation-tools-plugin@5.5') {  'pcModel' { 'pcServerName' 'cdlpfpcsvr04.es.ad.adp.com' 'almUserName' 'jenkinsACA' //'almPassword' 'adpaca'