mirror of
https://github.com/dokku/dokku.git
synced 2026-07-10 12:36:13 +02:00
The bash :report implementations for the dockerfile, herokuish, lambda, nixpacks, pack, and railpack builders are replaced with a compiled golang binary that collects report keys in parallel and marshals json directly, avoiding the per-key subshell and jq forks that made the bash reports slow. The subcommands/report and root report trigger become symlinks to the compiled binary, while the non-report bash helpers each plugin still relies on are left in place.
14 lines
428 B
Makefile
14 lines
428 B
Makefile
GOARCH ?= amd64
|
|
TRIGGERS = triggers/report
|
|
BUILD = report-subcommand triggers
|
|
PLUGIN_NAME = builder-lambda
|
|
|
|
clean-report-subcommand:
|
|
rm -rf report-subcommand
|
|
|
|
report-subcommand: clean-report-subcommand src/subcommands/subcommands.go
|
|
GOARCH=$(GOARCH) go build -mod=readonly -ldflags="-s -w" $(GO_ARGS) -o report-subcommand src/subcommands/subcommands.go
|
|
ln -sf ../report-subcommand subcommands/report
|
|
|
|
include ../../common.mk
|