Makefile: add hint that this just compiles the binaries

It does not run the tests because of to the "-c" flag
This commit is contained in:
Florian Schüller 2024-10-23 14:34:50 +02:00 committed by Florian Schüller
parent 00d3f07d08
commit c742e6457e

View file

@ -143,6 +143,7 @@ build: $(BUILDDIR)/bin/
go build -o $<osbuild-service-maintenance ./cmd/osbuild-service-maintenance
go build -o $<osbuild-jobsite-manager ./cmd/osbuild-jobsite-manager
go build -o $<osbuild-jobsite-builder ./cmd/osbuild-jobsite-builder
# also build the test binaries
go test -c -tags=integration -o $<osbuild-composer-cli-tests ./cmd/osbuild-composer-cli-tests/main_test.go
go test -c -tags=integration -o $<osbuild-weldr-tests ./internal/client/
go test -c -tags=integration -o $<osbuild-dnf-json-tests ./cmd/osbuild-dnf-json-tests/main_test.go