Re: Unit Testing problem

2017-07-07 Thread Slide
If you are running Jenkins as a service, it can't do stuff that interacts with the desktop, e.g., Windows forms applications. You would want to have a build agent running on the desktop using JNLP as a normal user that runs these tests. On Fri, Jul 7, 2017 at 10:40 AM

Jenkins.log file location on Ubuntu

2017-07-07 Thread Jason LeMauk
Hello! I am trying to access Jenkins logging outside of the web UI. The goal is to have a log available in the event that Jenkins web UI is inaccessible. >From what I have seen, system logging is stored in a jenkins.log file. I'm unable to locate this file on my system. It should be noted that

Jenkins Pipeline - CodeBuild stage

2017-07-07 Thread Kai
Hi, We are trying to leverage the awsCodeBuild plugin in out Jenkins pipeline However, the plugin seems limiting as we are not able to pass in override env vars to the CodeBuild project during build invocation. Is there a way to pass in override env vars to the CodeBuild project? Or, do we

Unit Testing problem

2017-07-07 Thread levan_taktakishvili
Dear All, I am running c# Unit Tests through Windows Jenkins and while executing tests console output window shows me same error for all the tests: Error Message: Test method Levan_Test threw exception: System.ComponentModel.Win32Exception: Access is denied Stack Trace: at

Re: Jenkins Pipeline Docker Permissions

2017-07-07 Thread Richard Bywater
I haven't checked for a while but it used to be that if you add a user to the "docker" group they'll be able to access docker commands. Richard On Sat, 8 Jul 2017, 9:27 AM Dan Kinon wrote: > Hello, >I'm running jenkins as a non-root user and am attempting to use a >

Re: Is pipeline timeout suppose to work?

2017-07-07 Thread Danny Rehelis
It is definitely working, your syntax maybe a bit off. Have a look here: https://jenkins.io/doc/book/pipeline/syntax/ and here: https://support.cloudbees.com/hc/en-us/articles/226554067-Pipeline-How-to-add-an-input-step-with-timeout-that-continues-if-timeout-is-reached-using-a-default-value On

Is pipeline timeout suppose to work?

2017-07-07 Thread jerome
HI, is the timeout can be used to prevent the warnings publisher and bat hang even possible? stage('Build') { timeout(60) { bat returnStatus: false, script:

Credentialid with github is not working in pipeline script on jenkins slave

2017-07-07 Thread Hound G
I am testing pipeline configuration script with below code, #!groovy node("jenkins-slave") { try { stage("Checkout") { checkout([$class: 'GitSCM', branches: [[name: 'test']], doGenerateSubmoduleConfigurations: false, userRemoteConfigs: [[ credentialsId:

Re: Unit Testing problem

2017-07-07 Thread Slide
I would start on this wiki page https://wiki.jenkins.io/display/JENKINS/Distributed+builds#Distributedbuilds-LaunchslaveagentviaJavaWebStart . On Fri, Jul 7, 2017 at 2:27 PM wrote: > Thanks a lot! Could you please elaborate what do you mean under: "You >

Jenkins Pipeline Docker Permissions

2017-07-07 Thread Dan Kinon
Hello, I'm running jenkins as a non-root user and am attempting to use a docker agent in my jenkinsfile. When I run the job, I get the following error: [VA_Build_containers_develop-NJECFMY5Y6Z5OKTQVWTCSYEZEVQKAXGGRGECV2LSFA2YZ2ALBWQQ] Running shell script + docker inspect -f .

Re: Unit Testing problem

2017-07-07 Thread levan_taktakishvili
Thanks a lot! Could you please elaborate what do you mean under: "You would want to have a build agent running on the desktop using JNLP as a normal user that runs these tests." I am new to Jenkins.. On Friday, July 7, 2017 at 2:15:00 PM UTC-4, slide wrote: > > If you are running Jenkins as a

Re: Safe to remove Server Sent Events (SSE) Gateway Plugin + its dependency??

2017-07-07 Thread Dan Tran
Make sense, i just removed Blue Ocean from a couple of my Jenkins -D On Friday, July 7, 2017 at 12:45:56 AM UTC-7, Stephen Connolly wrote: > > Iirc that is used by blue ocean > > On Fri 7 Jul 2017 at 08:33, Dan Tran > wrote: > >> >> >> Hi, >> >> I tend to remove those

Re: Is it possible to pause a pipeline, via an input, and then only allow a privileged user to progression it???

2017-07-07 Thread Richard Ginga
if you look at the "input" pipeline step documentation, use: submitter (optional) User IDs and/or *external* group names of person or people permitted to respond to the input, separated by ','. If you configure "alice, bob", will match with "alice" but not with "bob". You need to remove all the

Branch specific pipelines in Declarative Pipelines

2017-07-07 Thread Kenneth Brooks
As a user, I would like to run different pipelines depending on what branch my commit happens on. In Declarative Pipelines there is support for doing conditional stages, however, using this conditional logic has 2 issues: - You cannot re-order stages based on the branches - It makes the

Re: Jenkins Stickers

2017-07-07 Thread Alyssa Tong
hi Julian, how many would you like? What are the specific dates and location so we can make sure the shipment gets there in time. Thnx alyssa On Thu, Jul 6, 2017 at 7:57 PM, Jhon Doe wrote: > Hello Guys, > > I'm from Colombia and I'll be in USA at the end of the month for

How to get the JIRA workitems using REST api?

2017-07-07 Thread kalyanasundaram s
I could integrate Github, Jira and Jenkins. I could use smart commits which automatically translates into comments in the JIRA Issues. When I queue a build in Jenkins, the changeSet shows list of commits and each commit has the hyper link pointing to JIRA issues. I could navigate to JIRA issues

EC2 Plugin: cannot automatically connect to "stopped on idle" instances

2017-07-07 Thread Ahmed Akram
Hello all, I have a Jenkins setup with 1 master and 9 slaves on AWS and using the EC2 Plugin to manage them. When setting-up my slave I ticked the "Stop/Disconnect on idle" option so my slaves won't be terminated on idle timeout but rather stopped so it's faster when rebooting them. However,

Jenkins EC2 Plugin doesn't provision existing stopped instances

2017-07-07 Thread Ahmed Akram
Hello all, I have a Jenkins setup with 1 master and 9 slaves on AWS and using the EC2 Plugin to manage them. When setting-up my slave I ticked the "Stop/Disconnect on idle" option so my slaves won't be terminated on idle timeout but rather stopped so it's faster when rebooting them. However,

Jenkins Stickers

2017-07-07 Thread Jhon Doe
Hello Guys, I'm from Colombia and I'll be in USA at the end of the month for two weeks, so i wonder if someone have some stickers to share with some Colombian DevOps guys?. We'll really appreciate it. Thanks, Julian. -- You received this message because you are subscribed to the Google

Safe to remove Server Sent Events (SSE) Gateway Plugin + its dependency??

2017-07-07 Thread Dan Tran
Hi, I tend to remove those plugins that i dont use. However the name of this plugin sounds like a infra type, do i really need it? Thanks -Dan -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop

Re: Safe to remove Server Sent Events (SSE) Gateway Plugin + its dependency??

2017-07-07 Thread Stephen Connolly
Iirc that is used by blue ocean On Fri 7 Jul 2017 at 08:33, Dan Tran wrote: > > > Hi, > > I tend to remove those plugins that i dont use. However the name of this > plugin sounds like a infra type, do i really need it? > > Thanks > > -Dan > > -- > You received this message

Is it possible to pause a pipeline, via an input, and then only allow a privileged user to progression it???

2017-07-07 Thread paul b
As above but possibly with a set of users. I have checked the documentation and cant seem to see anything... -- 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