forked from DataDog/stratus-red-team
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
47 lines (36 loc) · 1.51 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
BUILD_VERSION := dev-snapshot
MAKEFILE_PATH := $(abspath $(lastword $(MAKEFILE_LIST)))
ROOT_DIR := $(dir $(MAKEFILE_PATH))
# Use go modules
export GO111MODULE=on
# Define binaries directory
BIN_DIR := $(ROOT_DIR)/bin
# Define go flags
GOFLAGS := -ldflags="-X main.BuildVersion=$(BUILD_VERSION) -w"
.PHONY: build docs test thirdparty-licenses mocks
# Default target
all: build
build:
@echo "Building Stratus..."
@cd v2 && go build $(GOFLAGS) -o $(BIN_DIR)/stratus cmd/stratus/*.go
@echo "Build completed. Binaries are saved in $(BIN_DIR)"
docs:
@echo "Generating documentation..."
@cd v2 && go run ./tools/ ../docs
@echo "Documentation generated successfully."
test:
@echo "Running tests..."
@cd v2 && go test ./... -v
@echo "Tests completed successfully."
thirdparty-licenses:
@echo "Retrieving third-party licenses..."
@cd v2 && go get github.com/google/go-licenses
@cd v2 && go install github.com/google/go-licenses
@cd v2 && $(GOPATH)/bin/go-licenses csv github.com/datadog/stratus-red-team/v2/cmd/stratus | sort > $(ROOT_DIR)/LICENSE-3rdparty.csv
@echo "Third-party licenses retrieved and saved to $(ROOT_DIR)/LICENSE-3rdparty.csv"
mocks:
@echo "Generating mocks..."
@cd v2 && mockery --name=StateManager --dir internal/state --output internal/state/mocks
@cd v2 && mockery --name=TerraformManager --dir pkg/stratus/runner --output pkg/stratus/runner/mocks
@cd v2 && mockery --name=FileSystem --structname FileSystemMock --dir internal/state --output internal/state/mocks
@echo "Mocks generated successfully."