generated from TBD54566975/tbd-project-template
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: build errors canceling deploy contexts (#1225)
Fixes an issue where build errors would cancel the deploys for modules that build successfully. For example, if we have `time` and `echo` (echo depends on time). ```sh build: time (time builds successfully) deploy: time build: echo (echo fails to build) >>> time's deploy ctx would get canceled here so it would never deploy ``` Then, we fix the build error in `echo`, but time never deployed and since it doesn't depend on `echo` it's never triggered to rebuild (unless a change to time is made). This change introduces a `buildCtx` and `deployCtx` If there are any build failures we will report them after the deploys for successful builds complete.
- Loading branch information
1 parent
dfc8380
commit e397c88
Showing
1 changed file
with
85 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters