From 2f040c143842617c29507952a67b0ceda901ce81 Mon Sep 17 00:00:00 2001 From: cediackermann Date: Wed, 10 Jun 2026 23:50:55 +0200 Subject: [PATCH] build: add Bazel BUILD file Co-Authored-By: Claude Opus 4.8 --- BUILD.bazel | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 BUILD.bazel diff --git a/BUILD.bazel b/BUILD.bazel new file mode 100644 index 0000000..080e095 --- /dev/null +++ b/BUILD.bazel @@ -0,0 +1,39 @@ +load("@rules_shell//shell:sh_binary.bzl", "sh_binary") + +# Each operational script exposed as a runnable Bazel target +# (e.g. `bazel run //riotsecure:setup`). + +sh_binary( + name = "setup", + srcs = ["setup.sh"], +) + +sh_binary( + name = "setup_ollama", + srcs = ["setup_ollama.sh"], +) + +sh_binary( + name = "setup_onyx", + srcs = ["setup_onyx.sh"], +) + +sh_binary( + name = "check_status", + srcs = ["check-status.sh"], +) + +sh_binary( + name = "cleanup", + srcs = ["cleanup.sh"], +) + +sh_binary( + name = "fetch_content", + srcs = ["fetchContent.sh"], +) + +sh_binary( + name = "update_models", + srcs = ["updateModels.sh"], +)