Re: Jenkins: user is missing the Overall/Read permission - Issue

2019-08-21 Thread 'joe khese' via Jenkins Users
Hello did you get the solution to this error? I'm currently battling with the same error On Saturday, 3 March 2018 15:07:07 UTC+1, Poovaraj Thangamariappan wrote: > > Hello, > > I have created *manual* user in Manger User and I have configured in > Matrix-based > security. It is showing Manu

Git pushes triggering old builds via Github branch source plugin

2018-09-10 Thread Joe Auty
Hello, I've seen the following behaviour (for reasons that I won't delve into unless you feel they are relevant): - webhook for repo that used to have an active/enabled webhook automatically re-enabled - doing so triggers all sorts of old builds, including for Jenkins hostnames that are no l

Getting Started converting Plugin to use Pipeline

2018-04-13 Thread Joe Fair
uter/Slave, or something to explain how this works? Thanks, Joe -- 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...@googlegrou

Re: Powershell Yarn Execution

2018-03-08 Thread Joe Cavanaugh
> [Pipeline] } > [Pipeline] // node > [Pipeline] End of Pipeline > ERROR: script returned exit code 1 > Finished: FAILURE On Thursday, March 8, 2018 at 11:17:10 AM UTC-6, Joe Cavanaugh wrote: > > Yep - the middle section of the first post is when I ran directly as the > use

Re: Powershell Yarn Execution

2018-03-08 Thread Joe Cavanaugh
:31:45 AM UTC-6, slide wrote: > > Have you tried running the same command in powershell directly to see if > the behavior is just powershell itself? > > On Thu, Mar 8, 2018 at 8:20 AM Joe Cavanaugh > wrote: > >> bat 'yarn install' works fine. It seems that the

Re: Powershell Yarn Execution

2018-03-08 Thread Joe Cavanaugh
bat 'yarn install' works fine. It seems that the powershell key word does not work correctly in declarative pipelines consistently. On Thursday, March 8, 2018 at 9:02:38 AM UTC-6, Joe Cavanaugh wrote: > > I didn't post the error message : > > ERROR: script retu

Re: Powershell Yarn Execution

2018-03-08 Thread Joe Cavanaugh
I didn't post the error message : ERROR: script returned exit code 1 Finished: FAILURE On Wednesday, March 7, 2018 at 4:51:41 PM UTC-6, Joe Cavanaugh wrote: > > stage('Build') { > steps { > powershell ''' >

Powershell Yarn Execution

2018-03-07 Thread Joe Cavanaugh
stage('Build') { steps { powershell ''' Write-Output "Starting Yarn Install" try { \$ErrorActionPreference = 'Stop' yarn install } catch { Write-Output "Install failed : \$PSItem" }

Re: Can I load a declarative Jenkinsfile via a shared library?

2018-01-11 Thread Joe Cavanaugh
You have to have the declarative pipeline 1.2 or higher to do this. I am having issues putting the "powershell" keyword in the library... otherwise it seems to work. On Thursday, January 11, 2018 at 1:41:50 AM UTC-6, Idan Adar wrote: > > Indeed possible. See blog post: > https://jenkins.io/blo

Re: Jenkins Infinite Loop w/ Powershell evoked from Groovy

2018-01-10 Thread Joe Cavanaugh
Anyone else encountering this issue? -- 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 this discussion on t

Re: Jenkins Infinite Loop w/ Powershell evoked from Groovy

2017-12-29 Thread Joe Cavanaugh
I can now confirm the standard bat 'echo Hello World' works fine - it is just the powershell keyword that is an issue. -- 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 e

Re: Jenkins Infinite Loop w/ Powershell evoked from Groovy

2017-12-29 Thread Joe Cavanaugh
Forgot to mention - the version of Jenkins is 2.98 with all the latest and greatest plugin versions (I just updated yesterday 12/28/2017). It is a windows master build machine running powershell 3.0 and I haven't tested on a powershell 5.1 machine yet. -- You received this message because yo

Jenkins Infinite Loop w/ Powershell evoked from Groovy

2017-12-29 Thread Joe Cavanaugh
I noticed in the example they are using only shell scripts and I am making a test for bat files as well. I'm wondering if anyone else is seeing this issue with attempting to make pipeline libraries. Thanks, Joe -- You received this message because you are subscribed to the Google G

Re: Declarative pipeline support for tools: CMake, custom tools

2017-10-18 Thread Joe Cavanaugh
Note - To make what Colin did work, you must be using declarative pipeline 1.2 or higher which has its own list of dependencies. I didn't realize this right away. On Monday, October 16, 2017 at 12:03:26 PM UTC-5, Colin Bennett wrote: > > The workaround of use the 'tool' function in the environm

Re: Can we install SonarQube and Jenkins on same machine(VM) ?

2017-10-02 Thread Joe Cavanaugh
Agree with Devin above, and would highly suggest against setting up the Master Jenkins server and Sonarqube together - I ran into scaling problems rather quickly (like within 6 months as people got wind of the Jenkins and Sonar servers). Migrating Jenkins is pretty easy though, so for the purpo

Re: Trying to use the shared library feature, unsuccessfully.

2017-09-29 Thread Joe Cavanaugh
I don't know if I fully understand your question... but here is something I did to solve getting scripts for execution in RepoA from repo's B,C,D... I now know the specific directories to execute the scripts from and the files that needed to be updated for Puppet. If you find a better way or t

Re: Setup Declarative Script currentBuild.ChangeSets

2017-07-26 Thread Joe Cavanaugh
I've used a modified version of the scripts found on https://support.cloudbees.com/hc/en-us/articles/217630098-How-to-access-Changelogs-in-a-Pipeline-Job- to great success by putting them as @NonCPS on the bottom of my declarative pipeline. Just recently I have moved the script to a global libr

Re: Pipeline conversion of MSTest to JUnit using XUnit

2017-05-19 Thread Joe Cavanaugh
step([ $class: 'XUnitBuilder', testTimeMargin: '3000', thresholdMode: 1, thresholds: [ [$class: 'FailedThreshold', failureNewThreshold: '', failureThreshold: '0', unstableNewThreshold: '', unstableThreshold: ''], [$class: 'SkippedThreshold', failureNewThreshold: '', failureThreshold: '', unstabl

Jenkins Job gets triggered by Bitbucket Push event but not by Pull request event.

2017-04-05 Thread joe . cellro
Hi guys, Iam not able to trigger a jenkins job , whenever I make a pull request in bitbucket but I am able to trigger Jenkins job whenever there is commit in bitbucket branch. I tried "BitBucket pull request builder" plugin, to achieve this but not able to succeed. Any help will be appreciat

How to get list of Pull requests on a specific branch

2017-03-12 Thread joe . cellro
Hi, Iam a newbie to Jenkins and Iam looking for help on this issue. My requirement is to create a nightly build Jenkins job, which should do the following. 1.Create Temp branch from a Dev_main Branch 2.Merge Temp Branch with One Candidate* Branch 3.Build 4.Run UI Tests 5.On Success : Merge cand

Re: Example of a working pod with the kubernetes-ci plugin

2017-01-28 Thread Joe Rhaman
Carlos, This Plugin clearly doesn't work Please provide a detailed how to at least rather on how this works. This is turning out to be a complete waste of time. Joe On Monday, December 19, 2016 at 7:44:43 AM UTC, Carlos Sanchez wrote: > > > > On Tue, Dec 6, 2016, 22:

Re: Problems using jenkins-cli quiet-down -block

2017-01-15 Thread Joe
After some more tests it looks like the problem affects pipeline jobs but not freestyle jobs. I guess this is a bug so have raised a jira https://issues.jenkins-ci.org/browse/JENKINS-41085 On Wednesday, 11 January 2017 09:59:46 UTC, Joe wrote: > > > Hi all, > > I want to r

Problems using jenkins-cli quiet-down -block

2017-01-11 Thread Joe
Hi all, I want to run some scripts externally that require that all jobs are stopped. I expected the following command to stop new jobs being started, and only return once all the jobs in the queue have finished (or reached the end of a stage for pipeline and paused): java -jar jenkins-cli.ja

Re: Big TRX file causing 'Publish MSTest' [MSTEST-PLUGIN] to Fail

2016-03-28 Thread Joe Fradley
Sure can and just did, thank you. On Monday, March 28, 2016 at 1:35:26 PM UTC-4, slide wrote: > > Can you file an issue in JIRA at https://issues.jenkins-ci.org? > > On Mon, Mar 28, 2016 at 9:54 AM Joe Fradley > wrote: > >> Hello, >> >> I have a job that has

Big TRX file causing 'Publish MSTest' [MSTEST-PLUGIN] to Fail

2016-03-28 Thread Joe Fradley
Hello, I have a job that has a lot of unit tests ~30,000. When it gets to the point of parsing the the produced *trx file I get a 'No more DTM IDs are available' error. Any suggestions on a solution would be appreciated. I could break my unit tests across different jobs, but I'd rather not. My

Re: Ability to get the current logged in user's api token

2015-12-21 Thread Joe Ferr
nto Jenkins. I suppose this will be the fall-back if I can't figure this out using a system groovy script The Jenkins DSL plugin doesn't support credentials as far as I know. Thanks, Joe On Monday, December 21, 2015 at 3:00:25 PM UTC-7, Joe Ferr wrote: > > We use the gradle/g

Ability to get the current logged in user's api token

2015-12-21 Thread Joe Ferr
cript. thanks, Joe -- 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 this discussion on the w

Workflow Getting Parameters into batch script.

2015-09-29 Thread joe
I have a workflow job with one Parameter defined in the job: (actually have additional, just stripped them out for this.I can not seem to get these Parameters to show up in the slave's script when it runs. Joe=99 In the Groovy script that I run stripped down to the bare bones:

Workflow - getting a node name

2015-09-29 Thread joe
I was at the Jenkins User Conference in Santa Clara and stopped at the Cloudbee's helpdesk cube they had there. I discussed the need to: 1) Do a set of jobs that do the same process on multiple systems. (Currently using a Matrix job). 2) When all have completed, select one machines that was

Node info passed to a post

2015-08-14 Thread joe
y to accomplish this? Thanks Joe -- 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 this di

How to view Jmeter Perfmon metrics collector graph via Jenkins dashboard

2015-03-31 Thread Joe Antony
Hi am running a test in Jmeter with the jmeter perfmon metrics collector plugin enabled via Jenkins.. Post test completion i can view the Performance results using performance Plugin.But how to view the perfmon metrics collector graph and stats in Jenkins dashboard??? -- You received this mess

Re: Github SQS not working, how to troubleshoot?

2014-12-16 Thread Joe Van Dyk
Getting the same thing, did you have any luck? On Tuesday, February 11, 2014 10:05:17 AM UTC-8, Gytis Greitai wrote: > > I have Jenkins under firewall and private organization repository on > github. > > I would like to setup Amazon SQS to trigger builds, everything seems to be > ok, but the bu

Jenkins fails to get source

2014-09-10 Thread Joe Smith
Jenkins has been working well for several years building many projects. Now we are getting a build failure on a project. It was doing - workspace -delete workspace -new workfold -map workspace get Now it does only workspace get and decides all files are up to date, so it gets nothing,

Ivy build project failing to build modules when attempting to build as separate jobs

2014-06-10 Thread joe . karau
Hi, I'm trying to create an Ivy build project in Jenkins to build part of our application, and things don't seem to be behaving as I would expect. I have several modules in my workspace with a layout similar to below: - project_build - build.xml - ivysettings.xml - build.properties - mod

Re: SCM Polling does not show in 'configure system' page

2014-02-05 Thread Joe Mihalich
FYI, i found my answer here: https://groups.google.com/forum/#!searchin/jenkinsci-users/scm$20polling/jenkinsci-users/xLXpSPsIAps/WbXPBI40DkgJ Joe On Tuesday, February 4, 2014 6:08:13 PM UTC-8, Joe Mihalich wrote: > > >Hi, > > I just installed a new jenkins instance ru

SCM Polling does not show in 'configure system' page

2014-02-04 Thread Joe Mihalich
do i have to do to get it to show? I have all the same plugins installed, but no jobs configured yet. Thanks, Joe -- 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, sen