Your browser was unable to load all of the resources. They may have been blocked by your firewall, proxy or browser configuration.
Press Ctrl+F5 or Ctrl+Shift+R to have your browser try again.

"Trigger Other Builds" step in a loop #3741

kururin ·

Hello

Quickbuild 7.0.4, under Windows 7

We have a sequential step with "Repeat parameters".
Inside this composition, we have a step triggering another configuration. This step does not use the "repeat parameters".

When a build is done, we can see that the "trigger" step is executed only once (screenshot here: https://ibb.co/mKQG6F.

Question: is there a way to force QB to launch this step each time?
The trick would be to add a parameter with a different value everytime this step is called... but for some reasons we'd like to avoid this.

You can download a test configuration here => https://expirebox.com/files/b0f469988533a9656b05e47e478cfe51.zip

Thank you
Mat

  • replies 2
  • views 910
  • stars 0
robinshen ADMIN ·

By default, QB only triggers same configuration only once in a single build chain. However you may force it being triggered multiple times passing some variables with different values, for instance in your trigger step definition, add below variable:
name: timestamp
value: ${new Date()}

kururin ·

Thank you Robin. That's the workaround we chose.