nomad-driver-containerd/Makefile.arm64
2021-01-29 12:22:06 -08:00

24 lines
310 B
Makefile

BINARY ?= containerd-driver
ifndef $(GOLANG)
GOLANG=$(shell which go)
export GOLANG
endif
export GOARCH=arm64
export GO111MODULE=on
export GOOS=linux
default: build
.PHONY: clean
clean:
rm -f $(BINARY)
.PHONY: build
build:
$(GOLANG) build -o $(BINARY) .
.PHONY: test
test:
./tests/run_tests.sh