-
Notifications
You must be signed in to change notification settings - Fork 141
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix kfp workflows which were created with a bad template #672
Conversation
Signed-off-by: David Wood <[email protected]>
Signed-off-by: David Wood <[email protected]>
Signed-off-by: David Wood <[email protected]>
Signed-off-by: David Wood <[email protected]>
Signed-off-by: David Wood <[email protected]>
Signed-off-by: David Wood <[email protected]>
Signed-off-by: David Wood <[email protected]>
Signed-off-by: David Wood <[email protected]>
Signed-off-by: David Wood <[email protected]>
@@ -9,7 +9,7 @@ define set_env_var | |||
endef | |||
|
|||
|
|||
KFP_ENDPOINT ?= "http://localhost:8080/" | |||
KFP_ENDPOINT?="http://localhost:8080/" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this change is only to trigger the transform kfp tests.
# repo_level_order parameters | ||
repo_lvl_stage_one_only: bool = False, | ||
repo_lvl_grouping_column: str = "repo_name", | ||
repo_lvl_store_type: str = "ray", | ||
repo_lvl_store_backend_dir: str = "", | ||
repo_lvl_store_ray_cpus: float = "0.5", | ||
repo_lvl_store_ray_cpus: float = 0.5, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Most of the other changes here were pre-commit cleanups, but this one seems like a real bug fix.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes, it was and it's fixed in #619
Signed-off-by: David Wood <[email protected]>
timeout-minutes: 120 | ||
run: | | ||
if [ -e "@TARGET_TRANSFORM_DIR/Makefile" -a -d "@TARGET_TRANSFORM_DIR/kfp_ray" ]; then | ||
if [ -e "transforms/code/code2parquet/Makefile" -a -e "transforms/code/code2parquet/kfp_ray/Makefile" ]; then |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can we combine the lines 62-86 in a shared Make rule, which will be the same for all transformers, and just change its arguments?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
100% agree with this, but can I put that on @revit13 for another PR.
@daw3rd according to https://github.com/IBM/data-prep-kit/actions/runs/11193934073/job/31119824449 it seems header_cleanser should be added to the kfp black list. |
Summary of changes
Why are these changes needed?
To enable kfp tests across all transforms (likely for the first time).
Related issue number (if any).