From 907880bfd6a922226a30208fc1f34df1d28cba04 Mon Sep 17 00:00:00 2001 From: mr Date: Thu, 6 Mar 2025 09:33:03 +0100 Subject: [PATCH] dev launch mode --- Makefile | 8 ++++++++ README.md | 2 ++ 2 files changed, 10 insertions(+) diff --git a/Makefile b/Makefile index 4bf3065..31a970e 100644 --- a/Makefile +++ b/Makefile @@ -3,6 +3,12 @@ build: clean go build . +run-tools: + docker compose -f docker-compose.tools.yml up -d + +build-monitord: + go build -o ../oc-monitord ../oc-monitord + run: ./oc-schedulerd @@ -21,4 +27,6 @@ publish-registry: all: docker publish-kind publish-registry +dev: run-tools build-monitord build run + .PHONY: build run clean docker publish-kind publish-registry \ No newline at end of file diff --git a/README.md b/README.md index aaa169c..47a7126 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,8 @@ OC-Scheduler retrieves the content of submitted workflows and prepare them to be executed. +make dev + ## Parsing From a workflow's name we retrieve the xml graph associated and parse it in order to create the object representing each componant.