Create .ipa and .apk file in Mac with Jenkins MsBuild, Xcode and nuget

2018-12-18 Thread Pradeep Drall
Hi, I would like create .ipa and .apk file in Mac with Jenkins agent, MsBuild, Xcode and nuget. I created the build with MsBuild and nuget plugin from Jenkins agent in Mac machine but not getting .ipa and .apk file there. I also installed Xcode integration plugin. I installed Xcode10 version

Re: How to configure GitHub Organizaiton Item/Job via Groovy

2018-12-18 Thread Phillip Dudley
Well, now I don't know why my script isn't working. I had to modify it to remove the version numbers, just to get the thing to work. The blog, https://qiita.com/aespinosa/items/5d791310f0cb436eb71f works if I copy and paste their example, import jenkins.model.Jenkins; pm =

Re: ERROR: Couldn't find any revision to build. Verify the repository and branch configuration for this job.

2018-12-18 Thread 'Yash Dabhi' via Jenkins Users
Thanks Mark, I was able to find the root cause. I had root access issue on the server when job triggers the build and new folder didn't have write access to clone the repo. Thanks again for the help! Thanks, Yash On Monday, December 17, 2018 at 3:25:15 PM UTC-5, Mark Waite wrote: > > You

Re: Jenkins as a render farm

2018-12-18 Thread Slide
I'm not sure you can get the number of nodes that match a label, that might be an interesting step to add though. On Tue, Dec 18, 2018, 14:26 Mark Raynsford wrote: > On 2018-12-18T14:01:09 -0700 > Slide wrote: > > > I think would be "easy" in a scripted pipeline compared to a declarative > >

Re: Jenkins as a render farm

2018-12-18 Thread 'Mark Raynsford' via Jenkins Users
On 2018-12-18T14:01:09 -0700 Slide wrote: > I think would be "easy" in a scripted pipeline compared to a declarative > pipeline. The reason I say that is because you can use loops directly in > your pipeline, so if you knew the number of frames, you could iterate over > the number of frames with

Re: New Jenkins server and BlueOcean won't load

2018-12-18 Thread MDKF
When Jenkins installed, it installed some, but not all of the required BlueOcean plugins, hence the failure to load. On Tuesday, December 11, 2018 at 11:42:01 AM UTC-5, MDKF wrote: > > It doesn't open in any browser. > > On Tuesday, December 11, 2018 at 5:00:02 AM UTC-5, Pranav Kv wrote: >> >>

Re: How to configure GitHub Organizaiton Item/Job via Groovy

2018-12-18 Thread Phillip Dudley
What I ended up doing is using what I had previously to setup Jenkins, login, and install the Job Configuration History plugin, and got the output of the config.xml. For whatever reason, doing the http://JENKINSURL:8080/job/NAME/config.xml would just result in a blank page, and not actually

Re: Jenkins as a render farm

2018-12-18 Thread Slide
I think would be "easy" in a scripted pipeline compared to a declarative pipeline. The reason I say that is because you can use loops directly in your pipeline, so if you knew the number of frames, you could iterate over the number of frames with 4 as an increment and create parallel steps for

Jenkins as a render farm

2018-12-18 Thread 'Mark Raynsford' via Jenkins Users
Hello! I've been using Jenkins to build code from hundreds of git repositories using declarative pipelines. In the setup I'm using, I have a small number of nodes, and all nodes must successfully build and run all tests in order for the job as a whole to have been considered successful. I'd now

Re: Install specific version of plugins with Groovy script

2018-12-18 Thread Phillip Dudley
Love these answers that aren't finished. Victor Martinez, do you have an example of what you're talking about? On Friday, April 20, 2018 at 4:43:24 PM UTC-5, geoffroy...@gmail.com wrote: > > Hello > just in case, could someone share a groovy sample script to achieve this? > I guess you have to

Re: Usage of Jenkins shared library in Job DSL

2018-12-18 Thread Philip Steiner
Thanks for the detailed followup! Lots to digest. It looks like you were having trouble accessing the Shared Library from generated pipeline scripts, which is a little different from my problem: I want to reference YAML data files stored in the Jenkins Shared Library from inside a Job DSL

Re: Why does it running on another node?

2018-12-18 Thread Eric Pyle
Help for the Usage setting (in node configuration page) says: *Only build jobs with label expressions matching this node* In this mode, Jenkins will only build a project on this node when that project is restricted to certain nodes using a label expression, and that expression matches

1 Jenkins_URL for HTTP/HTTPS, 1 Jenkins_URL for Slaves. AWS/ECS

2018-12-18 Thread Justin Seiser
I have Jenkins Master running as a container in AWS ECS, with its file share mounted on an EFS volume. I use the EC2 Plugin to deploy dynamic slaves in peered VPC's. Everything is using an internal ELB with portls 80/443/5 to allow access from the web browser as well as slave

Re: plugin to stop/start idle hosts

2018-12-18 Thread Jan Monterrubio
We use the scriptler script plugin to run some groovy scripts that mark a node offline, perform some action and then mark it online again. Would something like that help stop/start or are you looking for something that used the AWS apis to stop/start? On Tue, Dec 18, 2018 at 02:56 Brian C. Hill

Re: Usage of Jenkins shared library in Job DSL

2018-12-18 Thread treneva
Well, not exactly. I found a workaround by reworking the entire logic. My landscape is: one master declarative pipeline kicks off multiple child pipeline jobs. Both the master and the child pipelines are instances created out of shared libraries (jobBuilder, pipelineBuilder) and I want to be

plugin to stop/start idle hosts

2018-12-18 Thread Brian C. Hill
Hello Jenkins Users, I'm looking for a plugin to start/stop idle AWS jenkins worker node other than the EC2 plugin. I do not want the hosts created or terminated via the plugin - just stopped and started as needed. The ec2-plugin doesn't seem to be able to work with already-existing nodes