
We must pass the build tag through during the 'vet' check, and additionally there was some extra commands at the end of test_linux.sh that were not necessary.
40 lines
1019 B
Makefile
40 lines
1019 B
Makefile
.DEFAULT_GOAL=test
|
|
|
|
SHELL := /bin/bash
|
|
GO_SRC := $(shell find . -type f -not -path './_fixtures/*' -not -path './vendor/*' -not -path './_scripts/*' -not -path './localtests/*' -name '*.go')
|
|
|
|
check-cert:
|
|
@go run _scripts/make.go check-cert
|
|
|
|
build: $(GO_SRC)
|
|
@go run _scripts/make.go build
|
|
|
|
install: $(GO_SRC)
|
|
@go run _scripts/make.go install
|
|
|
|
uninstall:
|
|
@go run _scripts/make.go uninstall
|
|
|
|
test: vet
|
|
@go run _scripts/make.go test -v
|
|
|
|
vet:
|
|
@go vet -tags exp.linuxppc64le $$(go list -tags exp.linuxppc64le ./... | grep -v native)
|
|
|
|
test-proc-run:
|
|
@go run _scripts/make.go test -s proc -r $(RUN)
|
|
|
|
test-integration-run:
|
|
@go run _scripts/make.go test -s service/test -r $(RUN)
|
|
|
|
vendor:
|
|
@go run _scripts/make.go vendor
|
|
|
|
build-ebpf-image:
|
|
./pkg/proc/internal/ebpf/build/build-ebpf-builder-img.sh
|
|
|
|
build-ebpf-object: build-ebpf-image
|
|
./pkg/proc/internal/ebpf/build/build-ebpf-objects.sh
|
|
|
|
.PHONY: vendor test-integration-run test-proc-run test check-cert install build vet uninstall build-ebpf-image build-ebpf-object
|