Re: Jenkins List Files of Git Branch

2019-10-11 Thread Ajay Sharma
Hi Mark, Let me check for the GITHUB REST API's. Thanks for the reply. On Saturday, October 12, 2019 at 4:12:14 AM UTC+5:30, Mark Waite wrote: > > The git ls-remote command is not allowed to list remote files, only remote > references (branches and tags). > > Git providers (GitHub, Bitbucket, G

Is there a yaml checker/sanitizer for Jenkins pipeline jobs?

2019-10-11 Thread Tony C
We have a lot of Jenkins jobs that fail due to ill-formed yaml. Unfortunately, These often throw useless Java exceptions that are meaningless. I would like to invoke a yaml checker/sanitizer on that yaml, BEFORE Jenkins starts parsing it. Does anyone know if a Plugin exists, or if there is ano

Re: Jenkins List Files of Git Branch

2019-10-11 Thread Mark Waite
The git ls-remote command is not allowed to list remote files, only remote references (branches and tags). Git providers (GitHub, Bitbucket, Gitea, Assembla, Beanstalk, Gitlab, etc.) generally provide one or more REST API's that will list remote files in a branch. On Thursday, October 10, 2019

Re: create a local linux machine as a slave for aws ec2 cloud jenkins

2019-10-11 Thread Farrukh Fareed
Hi On your local machine there should be public ip or vpn tunnel so that you can connect to your local machine from ec2 master jenkins...next is java should be installed on your local system...go to master add node...this you can google On Fri, Oct 11, 2019, 7:44 PM gopi dasari wrote: > HI All,

Re: create a local linux machine as a slave for aws ec2 cloud jenkins

2019-10-11 Thread Mark Waite
https://wiki.jenkins.io/display/JENKINS/Distributed+builds describes the alternatives available and the reasons for those alternatives. If your local machine is not directly accessible to your EC2 master or if it is a Windows computer, then you are likely unable to initiate the connection from the

create a local linux machine as a slave for aws ec2 cloud jenkins

2019-10-11 Thread gopi dasari
HI All, I am very new to Jenkins, I want to create my local machine as a slave for aws ec2 cloud Jenkins to run the jobs. anyone please help me how to create a slave machine to ec2 jenkins-master. [image: jenkins master-slave.png] -- You received this message because you are subscribed to

Setting Security Setting 'Use browser for metatdata download' From Groovy

2019-10-11 Thread Tony Cooper
All of our Jenkins servers are configured from code that is under SCM control (configuration as code). In order to get around a similar problem described here I'm tryin

Re: nginx reverse proxy auth plugin

2019-10-11 Thread Uthred Ragnorson
Anyone? On Wed, Oct 9, 2019 at 9:33 PM Uthred Ragnorson wrote: > I have nginx authenticating with kerberos ( > https://github.com/stnoonan/spnego-http-auth-nginx-module) and I would > like it to authenticate Jenkins. Has anyone setup Nginx/SPNEGO and Jenkins? > > > For nginx on other products I

Jenkins List Files of Git Branch

2019-10-11 Thread Ajay Sharma
Hi Everyone, Good Morning. Request any ones help to List All FILES from the GIT BRANCH. I am trying to first list Branches of a GIT REPO, then list the files of the BRANCH. I am facing problem while listing files of the BRANCH. I have used this code List files Of the GIT REPO with *Extend