Makefile: include tests in make build
When I run make build I expect to build all the code we have to make sure it still compiles just fine.
This commit is contained in:
parent
f1b5ee8859
commit
d1c766abe7
2 changed files with 3 additions and 1 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -5,6 +5,7 @@ __pycache__
|
|||
/osbuild-pipeline
|
||||
/osbuild-upload-azure
|
||||
/osbuild-upload-aws
|
||||
/osbuild-dnf-json-tests
|
||||
/osbuild-tests
|
||||
|
||||
/*.tar.gz
|
||||
|
|
|
|||
3
Makefile
3
Makefile
|
|
@ -8,7 +8,8 @@ build:
|
|||
go build -o osbuild-pipeline ./cmd/osbuild-pipeline/
|
||||
go build -o osbuild-upload-azure ./cmd/osbuild-upload-azure/
|
||||
go build -o osbuild-upload-aws ./cmd/osbuild-upload-aws/
|
||||
go build -o osbuild-tests ./cmd/osbuild-tests
|
||||
go build -o osbuild-tests ./cmd/osbuild-tests/
|
||||
go build -o osbuild-dnf-json-tests ./cmd/osbuild-dnf-json-tests/
|
||||
|
||||
.PHONY: install
|
||||
install:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue