-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WIP: Add preprocessing child workflow
- Loading branch information
Showing
6 changed files
with
126 additions
and
15 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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
package preprocessing | ||
|
||
type Config struct { | ||
// Enable preprocessing child workflow. | ||
Enabled bool | ||
// Extract package in preprocessing. | ||
Extract bool | ||
// Local path shared with Enduro. | ||
SharedPath string | ||
// Temporal configuration. | ||
Temporal Temporal | ||
} | ||
|
||
type Temporal struct { | ||
Namespace string | ||
TaskQueue string | ||
WorkflowName string | ||
} | ||
|
||
type WorkflowParams struct { | ||
// Relative path to the shared path. | ||
RelativePath string | ||
} | ||
|
||
type WorkflowResult struct { | ||
// Relative path to the shared path. | ||
RelativePath string | ||
} |
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