You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We've seen this primarily in Azure DevOps linux pipeline agents (doesn't seem to repro on windows), where we have a just task with multiple parallel webpack builds and sometimes there won't be outputs for some of the webpack builds, nor errors. Our just config has something along the lines of this:
The postWebpackTask will still execute in cases where not all of the webpack bundles are observed. Haven't been able to nail down a firm root cause (e.g. is the webpack process dead? do we fail to wait for all of them correctly?)
The text was updated successfully, but these errors were encountered:
We've seen this primarily in Azure DevOps linux pipeline agents (doesn't seem to repro on windows), where we have a just task with multiple parallel webpack builds and sometimes there won't be outputs for some of the webpack builds, nor errors. Our just config has something along the lines of this:
series( parallel( webpackCliTask(...), webpackCliTask(...), webpackCliTask(...), webpackCliTask(...), webpackCliTask(...), webpackCliTask(...)), 'postWebpackTask');
The postWebpackTask will still execute in cases where not all of the webpack bundles are observed. Haven't been able to nail down a firm root cause (e.g. is the webpack process dead? do we fail to wait for all of them correctly?)
The text was updated successfully, but these errors were encountered: