What are the Slack Archives?

It’s a history of our time together in the Slack Community! There’s a ton of knowledge in here, so feel free to search through the archives for a possible answer to your question.

Because this space is not active, you won’t be able to create a new post or comment here. If you have a question or want to start a discussion about something, head over to our categories and pick one to post in! You can always refer back to a post from Slack Archives if needed; just copy the link to use it as a reference..

Hi, is there a way to define job dependencies/hierarchies in jenkins.php file? "Start executing job

U02M0AZBB35
U02M0AZBB35 Posts: 8 πŸ§‘πŸ»β€πŸš€ - Cadet

Hi, is there a way to define job dependencies/hierarchies in jenkins.php file? "Start executing job B only after job A successfully finishes" kind of thing. I tried to chain multiple commands by && but & gets sanitised. Any idea? This chain of jobs should be also scheduled. Thanks

Comments

  • U01K43ADW5N
    U01K43ADW5N Posts: 69 πŸ§‘πŸ»β€πŸš€ - Cadet

    we have something similar in our project

  • U01K43ADW5N
    U01K43ADW5N Posts: 69 πŸ§‘πŸ»β€πŸš€ - Cadet
    $jobs[] = [
        'name' => 'job-name',
        'command' => '
            $PHP_BIN vendor/bin/console cmd1
            vendor/bin/console cmd2
            vendor/bin/console cmd3
        ',
        'schedule' => '0 4 * * *', // Every day at 4 AM.
        'enable' => true,
        'run_on_non_production' => true,
        'stores' => $allStores,
    ];
    
  • U01K43ADW5N
    U01K43ADW5N Posts: 69 πŸ§‘πŸ»β€πŸš€ - Cadet

    this worked for us

  • U02M0AZBB35
    U02M0AZBB35 Posts: 8 πŸ§‘πŸ»β€πŸš€ - Cadet

    This seems to work, as a workaround, thanks!