Re: Pipeline; dotnet nuget push not reading from nuget.config

2018-08-03 Thread Slide
Do you have any credentials or anything setup in your non-pipeline job? On Fri, Aug 3, 2018 at 1:06 PM Jeroen Hendriks wrote: > I have a step which should push my nuget package to my private nexus > repository. > > steps { >powershell("dotnet nuget push >

Re: How do I trigger jenkins job if a pull request is merged in github

2018-08-03 Thread jsaketh2015
I want to use only pullrequestevent, so when a pull request is merged, it should run a script or hook, which would do all the checks like if a pull request is merged or not / if teh branch is release or not etc. if teh condition satisfies, it shoud run the jenkins job. On Friday, August 3, 2018

Jenkins and FoxPro

2018-08-03 Thread alpinehigh1969
I wanted to ping the brain trust concerning this request I received. Im currently onsite with a client that uses FoxPro for an inhouse app. Can I integrate Jenkins with FoxPro? Does anyone have any experience using Jenkins with FoxPro or .net? thanks -- You received this message because

Pipeline; dotnet nuget push not reading from nuget.config

2018-08-03 Thread Jeroen Hendriks
I have a step which should push my nuget package to my private nexus repository. steps { powershell("dotnet nuget push Tans.Library.Contracts/bin/Debug/*.nupkg -s NexusOss") } But I get the error that it can't find my source. And I also can't use the direct url since it requires

Jmeter Test execution - Blank Performance Trend graphs

2018-08-03 Thread Ajith Raman
Hello, I run a Jmeter test via Jenkins. Please find below the commands used: Execute Windows Batch command (Build): cd C:\Users\C51539A\Downloads\apache-jmeter-4.0\bin jmeter -Jjmeter.save.saveservice.output_format=csv -n -t Sample_Framework.jmx -l TestResults_%BUILD_NUMBER%.jtl -e -o

Unexpected withMaven downstream jobs skipping

2018-08-03 Thread Dan Tran
Hello I have 3 level withMaven jobs under the same bitbucket multibranch pipeline with setup to allow this scenario * A --> B --> C(s) It works. However, if A is actively building, job C will never get called, the job B log shows this [Bitbucket] Build result notified [withMaven] Not

Re: AES256-CTR support in Publish over SSH and JSch dependency Plugins

2018-08-03 Thread Ivan Fernandez Calvo
Check that your JDK supports the cipher and it is not disabled. On this page https://docs.oracle.com/javase/8/docs/technotes/guides/security/SunProviders.html#SunJSSEProvider said the following Cipher suites that use AES_256 require installation of the JCE Unlimited Strength Jurisdiction

Trigger Jenkins/BlueOcean JOB from Bitbucket when a new tag being pushed

2018-08-03 Thread Rahul Sahotay
Hello Experts: I am trying to trigger BlueOcean pipeline JOB from Bitbucket when a new tag (release.*) is being pushed. I do have several webhooks on my bitbucket dataCenter server viz: Webhook to Jenkins for Bitbucket Serve

Is it possible to re-run init.groovy.d scripts whilst Jenkins is running?

2018-08-03 Thread Cuong Tran
Can't you run your script under script console /script? -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-users+unsubscr...@googlegroups.com. To view

Re: Jenkins new git plugin which allows to ignore commits which are created by the automated Neustar commits.

2018-08-03 Thread seshadrireddy . sh
Thanks for your information Mr. Mark Waite. Regards, Jai On Friday, 3 August 2018 18:57:29 UTC+5:30, Mark Waite wrote: > > I'm not aware of a new git plugin. The existing git plugin allows > freestyle jobs to ignore commits based on author and based on content of > the commit message. It

Re: How do I trigger jenkins job if a pull request is merged in github

2018-08-03 Thread Ramanathan Muthaiah
> > We don't use multi branch pipeline. But , we use pipeline Jenkins job > written in jenkisnfile. > I want to know the steps to do on github and jenkinsfile side to trigger > the Jenkins job if a pull request is merged to a particular branch. > Multibranch (or GHE organization, if you

Error while running dynamically created parallel stages

2018-08-03 Thread Markus "Shorty" Uckelmann
Hi all, I dynamically create parallel stages from the contents of a file. The "parallel" step run, ut the job still fails with a "mysterious" error. The code and the error message can be found in the Gist https://gist.github.com/bemeyert/2eeffa6f649b57ffc9f015c3a5942e31 Any help would be

Re: Jenkins new git plugin which allows to ignore commits which are created by the automated Neustar commits.

2018-08-03 Thread Mark Waite
I'm not aware of a new git plugin. The existing git plugin allows freestyle jobs to ignore commits based on author and based on content of the commit message. It does not allow multibranch pipeline jobs to ignore commits. Mark Waite On Fri, Aug 3, 2018, 5:39 AM wrote: > Hello, > > I need

Re: Can I have a reusable “post” block for my jenkins pipelines?

2018-08-03 Thread red 888
wait there seems to be confusion about what i am asking for look at my SO post: https://stackoverflow.com/questions/51508234/can-i-have-a-reusable-post-block-for-my-jenkins-pipelines I also ready use shared libs, all my pipelines are there. Between those several pipelines they all have a

Re: dependency plugin- graphviz

2018-08-03 Thread Richard Yang
Hi, I wonder if this issue is resolved. We are using Jenkins 2.46.3 and dependency-viewer plugin 1.3. When I try click dependency graph link, the page does not display content and I see javascript error in the chrome console: hudson-behavior.js:835 Uncaught TypeError: div.firstChild.setAttribute

Jenkins: How to run test on multiple hosts in parallel?

2018-08-03 Thread Vijay Hiremath
Hi All, How to run test on multiple hosts in parallel? Below is the requirement. 1. I have a Jenkins job A. 2. 5 hosts are connected to A. 3. Test X need to be run on all 5 hosts. Also need to see the status of test on an independent console. 4. Result form the hosts need to be

Re: Remove / disable the Replay capability for Jenkins Pipeline consumers

2018-08-03 Thread Rushi Jawali
Can you elaborate more on this? On Wednesday, 7 June 2017 03:01:35 UTC-5, Jim Coll wrote: > > Worked it out - the Run/Reply permission was getting greyed out when the > Job/Configure permission is selected which implies that it's automatically > granted with the latter permission. > > On

Help with VSTestRunner plugin blocking bug

2018-08-03 Thread Mario Giammarco
Hello, VSTestRunner plugin has a blocking bug: it puts a prefix slash on test files as stated there: https://wiki.jenkins.io/display/JENKINS/VsTestRunner+Plugin It seems impossible to me that no one complains because it is a blocking bug. Is that plugin abandoned? Anyway I downloaded,

How to use Jenkins pipeline method parameters in Powershell script?

2018-08-03 Thread Daniel Christian Schröter
I ask this question already on https://stackoverflow.com/questions/51622150/how-to-use-jenkins-pipeline-method-parameters-in-powershell-script, but maybe here is someone to help me. I defined the following method in jenkins declarative pipeline, but I am not able to use the variables/output

Jenkins Path issues after installing MadCap Flare software

2018-08-03 Thread VivaLaRobo
Hello, I have recently installed MadCap Flare on a Windows machine that I have hooked up to Jenkins. When I run `madbuild` on the machine's CMD or Cygwin command prompts, it works fine. It also works fine if I SSH into the windows machine. However, when I run an Execute Shell command through

Re: How to reference the node parameter from the active choices reactive parameter

2018-08-03 Thread marouane zhani
I am actually having the same problem. did you succeed to resolve it? Le mardi 14 mars 2017 13:42:50 UTC+1, Tim Henderson a écrit : > > I basically want to drive a set of choice parameters based on the slave > node parameter choice. I tried to use the active choices reactive plugin to >

Jenkins new git plugin which allows to ignore commits which are created by the automated Neustar commits.

2018-08-03 Thread seshadrireddy . sh
Hello, I need Jenkins new git plugin which allows to ignore commits, which are created by the automated Neustar commits..is their any new git plugin ?? Thank you. *Regards* *Jai* -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To

Jenkins API Documentation

2018-08-03 Thread Danny Staple
The "REST" read only parts of the Jenkins HTTP API documentation (https://wiki.jenkins.io/display/JENKINS/Remote+access+API) are usable, but altering states, making changes other than triggering a build seem to be missing. There appear to be HTTP API endpoints for automated interactions and

jenkin instance where mesos and K8S clouds configured

2018-08-03 Thread pbasanta2002
Hi , I have a jenkin instance where mesos and K8S clouds configured .. If for some reason jobs need to be executed on mesos not able to start then K8S jobs also not starting . Just want to know is this expected ? Regards, Basanta -- You received this message because you are subscribed to the

Is it possible to re-run init.groovy.d scripts whilst Jenkins is running?

2018-08-03 Thread Edd Grant
Hi folks, We've spent quite a lot of effort automating the configuration of our Jenkins (2.122) master using init.groovy.d scripts. It's working really well apart from one caveat, being that (as far as I can tell) we have to restart the master in order to kick off the scripts in the