Re: Restartable Pipeline stages

2017-01-18 Thread Sam K
The non declarative pipeline way where multiple jobs were stitched together, this was possible. But not with declarative pipelines. Looks like the blue ocean project is aiming to address this issue...maybe? For my pipeline, we have to rerun test suites sometimes because they fail intermitte

Re: Restartable Pipeline stages

2017-01-18 Thread gulli
It seems to me that jenkins 2 pipelines are not really pipelines. From my perspective, someone missed a key ingredient for pipelines and build stages when designing this featureset, which is that build stages must operate on independent schedules, and must be independently repeatable. As a CI/CD

Re: Restartable Pipeline stages

2016-06-15 Thread Mark Bidewell
Just did. https://issues.jenkins-ci.org/browse/JENKINS-35989 On Tuesday, June 14, 2016 at 11:42:49 PM UTC-4, Rikesh Dhokia wrote: > > I too am looking for functionality like this. @Mark, did you create a > relevant JIRA issue for this? > > > > On Tuesday, 3 May 2016 03:23:07 UTC+10, Mark Bidewel

Re: Restartable Pipeline stages

2016-06-14 Thread Rikesh Dhokia
I too am looking for functionality like this. @Mark, did you create a relevant JIRA issue for this? On Tuesday, 3 May 2016 03:23:07 UTC+10, Mark Bidewell wrote: > > Is there a way to implement a restartable stage that could be manually > restarted? Often in Pipeline examples I see something l

Restartable Pipeline stages

2016-05-02 Thread Mark Bidewell
Is there a way to implement a restartable stage that could be manually restarted? Often in Pipeline examples I see something like: - "Deploy" -> "Deploy Again" ->"Deploy Yet Again" It seems like this could be combined into a single step that could be reexecuted. Is this possible? --