We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d1f546 commit 8caaedeCopy full SHA for 8caaede
Makefile.toml
@@ -120,7 +120,20 @@ cm_run_task copy-release-artifacts --portable
120
121
[tasks.build-test-components]
122
description = "Builds all test components with golem-cli"
123
-run_task = { name = ["llm-build-test-components"] }
+script_runner = "@shell"
124
+script = '''
125
+domains=(llm)
126
+
127
+# if there is no domain passed run for every domain
128
+if [ -z $1 ]; then
129
+ for domain in ${domains[@]};
130
+ do
131
+ cargo make --cwd $domain build-test-components;
132
+ done
133
+else
134
+ cargo make --cwd $1 build-test-components
135
+fi
136
+'''
137
138
[tasks.copy-debug-artifacts]
139
script_runner = "@duckscript"
0 commit comments