new: docker image workflow

Signed-off-by: ngn <ngn@ngn.tf>
This commit is contained in:
ngn
2025-01-28 10:01:39 +03:00
parent 3e3c09c6bc
commit 833503f455
4 changed files with 38 additions and 2 deletions

View File

@ -19,7 +19,12 @@ int main(int argc, char *argv[]) {
goto end;
}
if (lm_ctx_pool_add(&ctx, "test", "mptp://127.0.0.1:5858", "./examples/test") == NULL) {
if (lm_ctx_pool_add(&ctx, "test", "mptp://s.test.local", "./examples/test") == NULL) {
printf("failed to add pool: %s (%d)\n", lm_strerror(), lm_error());
goto end;
}
if (lm_ctx_pool_add(&ctx, "test", "mptp://n.test.local", "/tmp/test") == NULL) {
printf("failed to add pool: %s (%d)\n", lm_strerror(), lm_error());
goto end;
}