-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathMakefile
More file actions
41 lines (32 loc) · 1.18 KB
/
Makefile
File metadata and controls
41 lines (32 loc) · 1.18 KB
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
# See: https://gist.github.com/asukakenji/f15ba7e588ac42795f421b48b8aede63
# For a list of valid GOOS and GOARCH values
# Note: these can be overriden on the command line e.g. `make PLATFORM=<platform> ARCH=<arch>`
PLATFORM=$(shell go env GOOS)
ARCH=$(shell go env GOARCH)
GOTESTSUM=go run gotest.tools/gotestsum@latest
ifeq ("$(PLATFORM)", "windows")
bin=compose-unpacker.exe
else
bin=compose-unpacker
endif
dist := dist
image := portainer/compose-unpacker:latest
.PHONY: binary build image clean download-binaries
binary:
@echo "Building compose-unpacker for $(PLATFORM)/$(ARCH)..."
GOOS="$(PLATFORM)" GOARCH="$(ARCH)" CGO_ENABLED=0 go build -a --installsuffix cgo --ldflags '-s' -o dist/$(bin)
download-binaries:
@echo "Downloading binaries for $(PLATFORM)/$(ARCH)..."
@mkdir -pv $(dist)
@./setup.sh $(PLATFORM) $(ARCH)
build: binary download-binaries
@echo "done."
image: build
docker build -f build/$(PLATFORM)/Dockerfile -t $(image) .
clean:
rm -rf $(dist)
rm -rf .tmp
lint:
golangci-lint run --timeout=10m -c .golangci.yaml
test:
$(GOTESTSUM) --format pkgname-and-test-fails --format-hide-empty-pkg --hide-summary skipped -- -cover -covermode=atomic -coverprofile=coverage.out ./...