Skip to content

Commit

Permalink
fix: move rust-toolchain to top level so it gets picked up by buf (#3768
Browse files Browse the repository at this point in the history
)
  • Loading branch information
alecthomas authored Dec 16, 2024
1 parent 3c98f18 commit ea933c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ CONSOLE_ROOT := "frontend/console"
FRONTEND_OUT := CONSOLE_ROOT + "/dist/index.html"
EXTENSION_OUT := "frontend/vscode/dist/extension.js"
SQLC_GEN_FTL_OUT := "sqlc-gen-ftl/target/wasm32-wasip1/release/sqlc-gen-ftl.wasm"
PROTOS_IN := "common/protos"
PROTOS_IN := "common/protos backend/protos"
PROTOS_OUT := "backend/protos/xyz/block/ftl/console/v1/console.pb.go " + \
"backend/protos/xyz/block/ftl//v1/ftl.pb.go " + \
"backend/protos/xyz/block/ftl/timeline/v1/timeline.pb.go " + \
Expand Down Expand Up @@ -218,6 +218,7 @@ go2proto:
# Unconditionally rebuild protos
build-protos-unconditionally: go2proto lint-protos pnpm-install
cd common/protos && buf generate
cd backend/protos && buf generate

# Run integration test(s)
integration-tests *test:
Expand Down
File renamed without changes.

0 comments on commit ea933c2

Please sign in to comment.