-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
37 lines (28 loc) · 816 Bytes
/
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
.DEFAULT_GOAL := help
SHELL = /usr/bin/env bash
# 'go env' vars aren't always available in make environments, so get defaults for needed ones
GOARCH ?= $(shell go env GOARCH)
##
## ==== ARGS ===== #
## Container build tool compatible with `docker` API
DOCKER ?= docker
## Platform for 'build'
PLATFORM ?= linux/$(GOARCH)
## Image tag for all builds
IMAGE_TAG ?= cosi-provisioner-sidecar:latest
##
## === TARGETS === #
.PHONY: build
## Build local image for development, defaulting linux/<hostarch>
build:
$(DOCKER) build --platform $(PLATFORM) --tag $(IMAGE_TAG) .
.PHONY: test
## Test packages
test:
go vet ./...
go test ./...
# print out lines beginning with double-comments, plus next line as basic help text
.PHONY: help
## Show this help text
help:
@sed -n -e "/^##/{N;s/^/\n/p;}" $(MAKEFILE_LIST)