mirror of
https://github.com/psviderski/uncloud.git
synced 2026-08-26 11:03:34 +00:00
26 lines
635 B
TOML
26 lines
635 B
TOML
[settings]
|
|
experimental = true
|
|
|
|
[tools]
|
|
"aqua:vektra/mockery" = "3.5.3"
|
|
go = "1.26.1"
|
|
golangci-lint = "2.11.2"
|
|
node = "22.20.0"
|
|
protoc = "27.3"
|
|
protoc-gen-go = "1.34.2"
|
|
protoc-gen-go-grpc = "1.5.1"
|
|
|
|
[env]
|
|
_.file = ".env"
|
|
|
|
[tasks.proto]
|
|
description = "Regenerate gRPC API code from .proto files"
|
|
run = """
|
|
protoc --go_out=. --go_opt=paths=source_relative --go-grpc_out=. --go-grpc_opt=paths=source_relative \
|
|
--proto_path=. --proto_path=internal/machine/api/vendor internal/machine/api/pb/*.proto
|
|
"""
|
|
|
|
[tasks.mise-lock]
|
|
description = "Update mise.lock with hashes for all platforms"
|
|
run = "mise lock --platform linux-x64,macos-arm64"
|