This repository has been archived by the owner on Sep 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 79
/
Makefile
48 lines (35 loc) · 1.45 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
SOURCES := $(shell find . -name '*.go')
BINARY := scanner-trivy
IMAGE_TAG := dev
IMAGE := aquasec/harbor-scanner-trivy:$(IMAGE_TAG)
.PHONY: build test test-integration test-component docker-build setup dev debug run
build: $(BINARY)
test: build
go test -v -short -race -coverprofile=coverage.txt -covermode=atomic ./...
test-integration: build
go test -count=1 -v -tags=integration ./test/integration/...
.PHONY: test-component
test-component: docker-build
go test -count=1 -v -tags=component ./test/component/...
$(BINARY): $(SOURCES)
GOOS=linux CGO_ENABLED=0 go build -o $(BINARY) cmd/scanner-trivy/main.go
.PHONY: docker-build
docker-build: build
docker build --no-cache -t $(IMAGE) .
lint:
./bin/golangci-lint --build-tags component,integration run -v
setup:
curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh| sh -s v1.21.0
curl -sfL https://raw.githubusercontent.com/aquasecurity/trivy/main/contrib/install.sh | sh -s -- -b /usr/local/bin v0.48.3
submodule:
git submodule update --init --recursive
dev:
skaffold dev --tolerate-failures-until-deadline=true
debug:
skaffold debug --tolerate-failures-until-deadline=true
run: export SCANNER_TRIVY_CACHE_DIR = $(TMPDIR)harbor-scanner-trivy/.cache/trivy
run: export SCANNER_TRIVY_REPORTS_DIR=$(TMPDIR)harbor-scanner-trivy/.cache/reports
run: export SCANNER_LOG_LEVEL=debug
run:
@mkdir -p $(SCANNER_TRIVY_CACHE_DIR) $(SCANNER_TRIVY_REPORTS_DIR)
@go run cmd/scanner-trivy/main.go