question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

[concourse] in_parallel - support both array of steps; and explicit "steps" child

See original GitHub issue
image

From https://concourse-ci.org/in-parallel-step.html

in_parallel: ([step] | config)

Two forms of configuration are supported. The simplest form is a simple array of other steps, like so:

in_parallel:
- get: a
- get: b

This is shorthand for the following configuration:

in_parallel:
  steps:
  - get: a
  - get: b

Issue Analytics

  • State:closed
  • Created 4 years ago
  • Reactions:1
  • Comments:9 (6 by maintainers)

github_iconTop GitHub Comments

3reactions
mstockdcommented, Aug 21, 2019

Thank you @kdvolder, its working great in our case (using a format like:

- in_parallel:
      fail_fast: true
      steps:
      - task: task-1
        file: task-1.yml
        image: image-1

      - task: task-2
        file: task-2.yml
        image: image-2
1reaction
kdvoldercommented, Aug 20, 2019

If anyone wants to give the fix a try, you can download a snapshot .vsix file from this page:

http://dist.springsource.com/snapshot/STS4/nightly-distributions.html

Because of the somewhat strange typing… this was a bit more involved of a fix than the usual little ‘schema nitpicks’, so I really would appreciate someone to give it good try out. And let us know how it goes.

Read more comments on GitHub >

github_iconTop Results From Across the Web

Advanced Workflows with Parallel steps · Codefresh | Docs
Parallel pipelines where step order is explicitly defined (advanced). With the parallel execution mode, you can define complex pipelines with fan-in/out ...
Read more >
A simple parallel processing fork manager - metacpan.org
DESCRIPTION. This module is intended for use in operations that can be done in parallel where the number of processes to be forked...
Read more >
TinkerPop Documentation
Reasoning is the process of making explicit what is implicit in the data. What is explicit in a graph are the objects of...
Read more >
Shell programming with bash: by example, by counter-example
Variables in bash have a dual nature as both arrays and variables. To set a variable, use = : ... The process id...
Read more >
16.1. Glossary — CS3 Data Structures & Algorithms - OpenDSA
Two nodes of a tree or two vertices of a graph are said to be adjacent if they ... At each step, look...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found