Reputation: 627
After successfully deploying Github repository X to an AWS EB instance via a Jenkins job, I would like to trigger the UI test suite in Github repository Y via Jenkins.
How can I achieve this?
Upvotes: 1
Views: 266
Reputation: 385
Jenkins can trigger downstream jobs via Post-build Actions
using Build Other Projects or you could use the Parameterized Trigger Plugin if you require to pass arguments to the downstream build(s)
Upvotes: 1