@@ -29,28 +29,28 @@ build-image:
29
29
@bash -x src/scripts/docker_image_build.sh
30
30
31
31
build-all : build-image
32
- @bash -x src/scripts/build .sh scripts/bazel_build.sh
32
+ @bash -x src/scripts/run .sh scripts/bazel_build.sh
33
33
34
34
run-query-agent :
35
- @bash -x src/scripts/run.sh query_broker 31700
35
+ @bash -x src/scripts/run.sh bin/ query_broker 31700
36
36
37
37
run-attention-broker :
38
- @bash -x src/scripts/run.sh attention_broker_service 37007
38
+ @bash -x src/scripts/run.sh bin/ attention_broker_service 37007
39
39
40
40
run-link-creation-agent :
41
- @bash -x src/scripts/run.sh link_creation_server $(OPTIONS )
41
+ @bash -x src/scripts/run.sh bin/ link_creation_server $(OPTIONS )
42
42
43
43
run-link-creation-client :
44
- @bash -x src/scripts/run.sh link_creation_agent_client $(OPTIONS )
44
+ @bash -x src/scripts/run.sh bin/ link_creation_agent_client $(OPTIONS )
45
45
46
46
run-inference-agent :
47
- @bash -x src/scripts/run.sh inference_agent_server $(OPTIONS )
47
+ @bash -x src/scripts/run.sh bin/ inference_agent_server $(OPTIONS )
48
48
49
49
run-inference-agent-client :
50
- @bash -x src/scripts/run.sh inference_agent_client $(OPTIONS )
50
+ @bash -x src/scripts/run.sh bin/ inference_agent_client $(OPTIONS )
51
51
52
52
run-evolution :
53
- @bash ./ src/scripts/bazel .sh ./ scripts/bazel_cmd.sh run //evolution:main -- $(OPTIONS )
53
+ @bash src/scripts/run .sh scripts/bazel_cmd.sh run //evolution:main -- $(OPTIONS )
54
54
55
55
run-das-agent :
56
56
@bash ./src/scripts/bazel.sh run //das_agent:main -- $(OPTIONS )
@@ -64,14 +64,14 @@ setup-nunet-dms:
64
64
reset-nunet-dms :
65
65
@bash -x src/scripts/reset-nunet-dms.sh
66
66
67
- bazel : build-image
68
- @bash ./ src/scripts/bazel .sh $(filter-out $@ , $(MAKECMDGOALS ) )
67
+ bazel :
68
+ @bash -x src/scripts/run.sh scripts/bazel_cmd .sh $(filter-out $@ , $(MAKECMDGOALS ) )
69
69
70
70
test-all-no-cache :
71
71
@$(MAKE ) bazel ' test --cache_test_results=no //tests/...'
72
72
73
73
test-all : build-image
74
- @$(MAKE ) bazel test //tests/...
74
+ @$(MAKE ) bazel ' test //tests/...'
75
75
76
76
lint-all :
77
77
@$(MAKE ) bazel lint \
0 commit comments