Skip to content

Commit

Permalink
Add call to extra_images (flyteorg#522)
Browse files Browse the repository at this point in the history
Signed-off-by: Eduardo Apolinario <[email protected]>

Co-authored-by: Eduardo Apolinario <[email protected]>
  • Loading branch information
eapolinario and eapolinario authored Jan 6, 2022
1 parent 13b005f commit 4c5d246
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ shell: _requires-sandbox-up ## Drop into a development shell
.PHONY: register
register: _requires-sandbox-up ## Register Flyte cookbook workflows
$(call LOG,Registering example workflows in cookbook/$(EXAMPLES_MODULE))
$(call RUN_IN_SANDBOX,make -C cookbook/$(EXAMPLES_MODULE) extra_images)
$(call RUN_IN_SANDBOX,make -C cookbook/$(EXAMPLES_MODULE) serialize)
make -C cookbook/$(EXAMPLES_MODULE) register

Expand Down
3 changes: 3 additions & 0 deletions cookbook/common/common.mk
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,6 @@ setup: install-piptools # Install requirements
.PHONY: lint
lint: # Run linters
flake8 .

.PHONY: extra_images
extra_images: ;
4 changes: 4 additions & 0 deletions cookbook/core/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,7 @@ PREFIX=core
PWD=$(shell pwd)
include ../common/common.mk
include ../common/leaf.mk

.PHONY: extra_images
extra_images:
make -C containerization/raw-containers-supporting-files build_images

0 comments on commit 4c5d246

Please sign in to comment.