fix: remove debug info
All checks were successful
build / build (push) Successful in 1m23s
build / trigger-build-image (push) Successful in 6s

This commit is contained in:
张泊明518370910136 2024-10-01 01:33:53 -04:00
parent 0826a3d14a
commit 79446e7826
GPG Key ID: D47306D7062CDA9D

View File

@ -9,7 +9,6 @@ FLAGS := "-s -w -X main.Version=$(VERSION)"
all: build
build:
echo 'make build'
$(foreach APP,$(APPS), go build -ldflags=$(FLAGS) -o $(BUILD_DIR)/$(APP) ./cmd/$(APP);)
clean:
@ -24,7 +23,6 @@ prepare-test:
git submodule update --init --remote
test:
echo 'make test'
./scripts/prepare_test_repos.sh $(TMP_DIR)
go test -coverprofile cover.out -v ./...