I have a project ( p1) that is created at night. Every Tuesday I want to create a second project ( p2), but only upon successful completion p1. p2relies on a successful build p1, so it p2does not start to run if it does p1not work in this case .
The only way I can do this is to create two identical jobs p1 p1aand p1b:
p1a works every day except tuesdayp1b starts on tuesday, when it is completed successfully, launches p2
This is a bit of a mess as it creates several versions p1for support, with their own build history, etc.
Does anyone know a better way to do this?
source
share