Skip to content

Commit

Permalink
adding smoke test task
Browse files Browse the repository at this point in the history
  • Loading branch information
gAmUssA committed May 7, 2024
1 parent 3946dd8 commit 7c2e140
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,12 @@ stop_containers:
echo "All containers in \033[1m$$dir\033[0m have been stopped and volumes removed."; \
done

.PHONY: all pull_images stop_containers
# Target to run the default make task in each directory
run_default_make:
@for dir in $(DIRS); do \
echo "Running default make in \033[1m$$dir\033[0m..."; \
(cd $$dir && make); \
echo "Completed running make in \033[1m$$dir\033[0m."; \
done

.PHONY: all pull_images stop_containers run_default_make

0 comments on commit 7c2e140

Please sign in to comment.