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
Background
For visibility and common usability it can be very good to have possibility to define results of the runs as an explicitly defined list of objects.
Let's introduce an API for this.
Approach
New entity (permissions should be nested from run) PipelineRunResult should be introduced:
{
"id": <long, PK>,
"runId": <long, FK on PipelineRun>
"name": <string>,
"pattern": <string>, # pattern to match items for this result object
"items": [ <data storage link> ]
}
DataStorageRule object should be changed:
Add flag to mark it as run result
Add field name
During download_outputs in launch.sh additionally publish file as run result if it matches a run result rule
The text was updated successfully, but these errors were encountered:
Background
For visibility and common usability it can be very good to have possibility to define results of the runs as an explicitly defined list of objects.
Let's introduce an API for this.
Approach
New entity (permissions should be nested from run) PipelineRunResult should be introduced:
DataStorageRule object should be changed:
name
During
download_outputs
inlaunch.sh
additionally publish file as run result if it matches a run result ruleThe text was updated successfully, but these errors were encountered: