Skip to content

Commit

Permalink
fix doc_quality Makefile kfp rules
Browse files Browse the repository at this point in the history
Signed-off-by: David Wood <[email protected]>
  • Loading branch information
daw3rd committed Oct 3, 2024
1 parent e369340 commit 602719a
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions transforms/language/doc_quality/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,27 @@ load-image::
@# Help: Recursively make $@ in all subdirs
$(MAKE) RULE=$@ .recurse

.PHONY: workflow-venv
workflow-venv:
if [ -e kfp_ray ]; then \
$(MAKE) -C kfp_ray workflow-venv; \
fi

.PHONY: workflow-test
workflow-test:
if [ -e kfp_ray ]; then \
$(MAKE) -C kfp_ray workflow-test; \
fi

.PHONY: workflow-upload
workflow-upload:
if [ -e kfp_ray ]; then \
$(MAKE) -C kfp_ray workflow-upload; \
fi

.PHONY: workflow-build
workflow-build:
if [ -e kfp_ray ]; then \
$(MAKE) -C kfp_ray workflow-build; \
fi

0 comments on commit 602719a

Please sign in to comment.