Re: Single Jenkinsfile, multiple architecture builds

2016-08-04 Thread Roberto Aguilar
Ah, perfect, works. Thank you Daniel! -Roberto. On Thursday, August 4, 2016 at 10:23:11 AM UTC-4, Daniel Beck wrote: > > The error just tells you that you can't define stages within parallel, as > there's no visualization for it -- it's strictly sequential. So remove the > 'stage' statements

Re: Single Jenkinsfile, multiple architecture builds

2016-08-04 Thread Daniel Beck
The error just tells you that you can't define stages within parallel, as there's no visualization for it -- it's strictly sequential. So remove the 'stage' statements from build() and it should be fine. > On 04.08.2016, at 15:39, Roberto Aguilar wrote: > > Hello,

Single Jenkinsfile, multiple architecture builds

2016-08-04 Thread Roberto Aguilar
Hello, I have a Jenkins master (x86_64 linux) and a slave (armv7l linux). I have labeled them "x86_64" and "arm" respectively. I have a Pipeline build triggering on Git push, and I would like the Jenkinsfile in the repo to build on both machines. I'm having trouble setting up my Jenkinsfile