File tree 1 file changed +6
-4
lines changed
1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -134,16 +134,18 @@ addlicense-install:
134
134
go install github.com/google/addlicense@latest
135
135
136
136
build-local :
137
- @for target in $(TARGETS ) ; do \
138
- CGO_ENABLED=$(CGO_ENABLED ) go build -trimpath -v -o $(OUTPUT_DIR ) /$$ {target} \
137
+ @for target in $(TARGETS ) ; do \
138
+ echo " Building $$ {target} ..." ; \
139
+ CGO_ENABLED=$(CGO_ENABLED ) go build -trimpath -o $(OUTPUT_DIR ) /$$ {target} \
139
140
-ldflags " -s -w -X $( ROOT) /pkg/version.version=$( VERSION) \
140
141
-X $(ROOT ) /pkg/version.buildDate=$(BUILD_DATE ) \
141
142
-X $(ROOT ) /pkg/version.gitCommit=$(GIT_COMMIT ) \
142
- -X $(ROOT ) /pkg/version.gitTreeState=$(GIT_TREE_STATE ) \
143
+ -X $(ROOT ) /pkg/version.gitTreeState=$(GIT_TREE_STATE ) \
143
144
-X $(ROOT ) /pkg/version.gitTag=$(GIT_LATEST_TAG ) \
144
145
-X $(ROOT ) /pkg/version.developmentFlag=true" \
145
- $(CMD_DIR ) /$$ {target}; \
146
+ $(CMD_DIR ) /$$ {target}; \
146
147
done
148
+ @echo " Build envd successfully!"
147
149
148
150
pypi-build : clean
149
151
@python3 setup.py sdist bdist_wheel
You can’t perform that action at this time.
0 commit comments