mirror of
https://github.com/sqlc-dev/sqlc.git
synced 2025-04-24 14:50:49 +03:00

* Add support for json format from process plugins * Update gen.go * Fix test --------- Co-authored-by: Kyle Gray <kyle@conroy.org>
57 lines
1.4 KiB
Makefile
57 lines
1.4 KiB
Makefile
.PHONY: build build-endtoend test test-ci test-examples test-endtoend start psql mysqlsh proto
|
|
|
|
build:
|
|
go build ./...
|
|
|
|
install:
|
|
go install ./...
|
|
|
|
test:
|
|
go test ./...
|
|
|
|
test-managed:
|
|
MYSQL_SERVER_URI="invalid" POSTGRESQL_SERVER_URI="postgres://postgres:mysecretpassword@localhost:5432/postgres" go test -v ./...
|
|
|
|
vet:
|
|
go vet ./...
|
|
|
|
test-examples:
|
|
go test --tags=examples ./...
|
|
|
|
build-endtoend:
|
|
cd ./internal/endtoend/testdata && go build ./...
|
|
|
|
test-ci: test-examples build-endtoend vet
|
|
|
|
sqlc-dev:
|
|
go build -o ~/bin/sqlc-dev ./cmd/sqlc/
|
|
|
|
sqlc-pg-gen:
|
|
go build -o ~/bin/sqlc-pg-gen ./internal/tools/sqlc-pg-gen
|
|
|
|
sqlc-gen-json:
|
|
go build -o ~/bin/sqlc-gen-json ./cmd/sqlc-gen-json
|
|
|
|
test-json-process-plugin:
|
|
go build -o ~/bin/test-json-process-plugin ./scripts/test-json-process-plugin/
|
|
|
|
start:
|
|
docker compose up -d
|
|
|
|
fmt:
|
|
go fmt ./...
|
|
|
|
psql:
|
|
PGPASSWORD=mysecretpassword psql --host=127.0.0.1 --port=5432 --username=postgres dinotest
|
|
|
|
mysqlsh:
|
|
mysqlsh --sql --user root --password mysecretpassword --database dinotest 127.0.0.1:3306
|
|
|
|
proto:
|
|
buf generate
|
|
|
|
remote-proto:
|
|
protoc \
|
|
--go_out=. --go_opt="Minternal/remote/gen.proto=github.com/sqlc-dev/sqlc/internal/remote" --go_opt=module=github.com/sqlc-dev/sqlc \
|
|
--go-grpc_out=. --go-grpc_opt="Minternal/remote/gen.proto=github.com/sqlc-dev/sqlc/internal/remote" --go-grpc_opt=module=github.com/sqlc-dev/sqlc \
|
|
internal/remote/gen.proto
|