Compare commits

...

1 Commits

Author SHA1 Message Date
Charles Cunningham
bad22f6a62 Include logs migrations in Bazel state target
Add the new logs migrations directory to the state crate's Bazel compile_data so sqlx can resolve it in remote builds.

Co-authored-by: Codex <noreply@openai.com>
2026-03-06 11:58:43 -08:00

View File

@@ -3,5 +3,8 @@ load("//:defs.bzl", "codex_rust_crate")
codex_rust_crate(
name = "state",
crate_name = "codex_state",
compile_data = glob(["migrations/**"]),
compile_data = glob([
"logs_migrations/**",
"migrations/**",
]),
)