Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
Bug fix and feature
(This Slack thread is the starting point for this work.)
Main change:
Make the pipeline less likely to produce hard to debug errors by removing usage of
parallel
. Though not 100% diagnosed, it seems like parallel can lead to some strange behavior that manifests as files and programs not being found, or Python package installation steps failing, etc. These are transient and often go away after a retry, but they are confusing and sometimes send people on unnecessary troubleshooting exercises.Ex issue:
A potentially significant downside will be the extra time the pipeline will take to complete. This won't be too bad for now, but time will scale with the number of indicators. There will be additional work done to migrate the pipeline to GH Actions in the short to medium term, where we should be able to run in parallel again.
Additional change(s):
Run the build script on dev/feature branches. This is useful to catch issues before the necessity of merging to
main
.Changelog