runc/Makefile

159 lines
4.8 KiB
Makefile
Raw Normal View History

2022-07-28 16:28:18 +08:00
CONTAINER_ENGINE := docker
2022-12-30 11:21:19 +08:00
GO ?= go
2022-07-28 16:28:18 +08:00
2022-12-30 11:21:19 +08:00
PREFIX ?= /usr/local
2022-07-28 16:28:18 +08:00
BINDIR := $(PREFIX)/sbin
2022-12-30 11:21:19 +08:00
MANDIR := $(PREFIX)/share/man
2022-07-28 16:28:18 +08:00
GIT_BRANCH := $(shell git rev-parse --abbrev-ref HEAD 2>/dev/null)
GIT_BRANCH_CLEAN := $(shell echo $(GIT_BRANCH) | sed -e "s/[^[:alnum:]]/-/g")
RUNC_IMAGE := runc_dev$(if $(GIT_BRANCH_CLEAN),:$(GIT_BRANCH_CLEAN))
PROJECT := github.com/opencontainers/runc
BUILDTAGS ?= seccomp
2022-12-30 11:21:19 +08:00
COMMIT ?= $(shell git describe --dirty --long --always)
VERSION := $(shell cat ./VERSION)
ifeq ($(shell $(GO) env GOOS),linux)
ifeq (,$(filter $(shell $(GO) env GOARCH),mips mipsle mips64 mips64le ppc64))
ifeq (,$(findstring -race,$(EXTRA_FLAGS)))
GO_BUILDMODE := "-buildmode=pie"
endif
endif
endif
GO_BUILD := $(GO) build -trimpath $(GO_BUILDMODE) $(EXTRA_FLAGS) -tags "$(BUILDTAGS)" \
-ldflags "-X main.gitCommit=$(COMMIT) -X main.version=$(VERSION) $(EXTRA_LDFLAGS)"
GO_BUILD_STATIC := CGO_ENABLED=1 $(GO) build -trimpath $(EXTRA_FLAGS) -tags "$(BUILDTAGS) netgo osusergo" \
-ldflags "-extldflags -static -X main.gitCommit=$(COMMIT) -X main.version=$(VERSION) $(EXTRA_LDFLAGS)"
GPG_KEYID ?= asarai@suse.de
2022-07-28 16:28:18 +08:00
.DEFAULT: runc
2022-12-30 11:21:19 +08:00
runc:
$(GO_BUILD) -o runc .
2022-07-28 16:28:18 +08:00
2022-12-30 11:21:19 +08:00
all: runc recvtty sd-helper seccompagent
2022-07-28 16:28:18 +08:00
2022-12-30 11:21:19 +08:00
recvtty sd-helper seccompagent:
$(GO_BUILD) -o contrib/cmd/$@/$@ ./contrib/cmd/$@
2022-07-28 16:28:18 +08:00
2022-12-30 11:21:19 +08:00
static:
$(GO_BUILD_STATIC) -o runc .
2022-07-28 16:28:18 +08:00
2022-12-30 11:21:19 +08:00
releaseall: RELEASE_ARGS := "-a arm64 -a armel -a armhf -a ppc64le -a s390x"
releaseall: release
2022-07-28 16:28:18 +08:00
2022-12-30 11:21:19 +08:00
release: runcimage
$(CONTAINER_ENGINE) run $(CONTAINER_ENGINE_RUN_FLAGS) \
--rm -v $(CURDIR):/go/src/$(PROJECT) \
-e RELEASE_ARGS=$(RELEASE_ARGS) \
$(RUNC_IMAGE) make localrelease
script/release_sign.sh -S $(GPG_KEYID) -r release/$(VERSION) -v $(VERSION)
localrelease:
script/release_build.sh -r release/$(VERSION) -v $(VERSION) $(RELEASE_ARGS)
2022-07-28 16:28:18 +08:00
dbuild: runcimage
2022-12-30 11:21:19 +08:00
$(CONTAINER_ENGINE) run $(CONTAINER_ENGINE_RUN_FLAGS) \
--privileged --rm \
-v $(CURDIR):/go/src/$(PROJECT) \
$(RUNC_IMAGE) make clean all
2022-07-28 16:28:18 +08:00
lint:
2022-12-30 11:21:19 +08:00
golangci-lint run ./...
2022-07-28 16:28:18 +08:00
man:
man/md2man-all.sh
runcimage:
2022-12-30 11:21:19 +08:00
$(CONTAINER_ENGINE) build $(CONTAINER_ENGINE_BUILD_FLAGS) -t $(RUNC_IMAGE) .
2022-07-28 16:28:18 +08:00
2022-12-30 11:21:19 +08:00
test: unittest integration rootlessintegration
2022-07-28 16:28:18 +08:00
2022-12-30 11:21:19 +08:00
localtest: localunittest localintegration localrootlessintegration
2022-07-28 16:28:18 +08:00
unittest: runcimage
2022-12-30 11:21:19 +08:00
$(CONTAINER_ENGINE) run $(CONTAINER_ENGINE_RUN_FLAGS) \
-t --privileged --rm \
-v /lib/modules:/lib/modules:ro \
-v $(CURDIR):/go/src/$(PROJECT) \
$(RUNC_IMAGE) make localunittest TESTFLAGS=$(TESTFLAGS)
2022-07-28 16:28:18 +08:00
localunittest: all
2022-12-30 11:21:19 +08:00
$(GO) test -timeout 3m -tags "$(BUILDTAGS)" $(TESTFLAGS) -v ./...
2022-07-28 16:28:18 +08:00
integration: runcimage
2022-12-30 11:21:19 +08:00
$(CONTAINER_ENGINE) run $(CONTAINER_ENGINE_RUN_FLAGS) \
-t --privileged --rm \
-v /lib/modules:/lib/modules:ro \
-v $(CURDIR):/go/src/$(PROJECT) \
$(RUNC_IMAGE) make localintegration TESTPATH=$(TESTPATH)
2022-07-28 16:28:18 +08:00
localintegration: all
2022-12-30 11:21:19 +08:00
bats -t tests/integration$(TESTPATH)
2022-07-28 16:28:18 +08:00
rootlessintegration: runcimage
2022-12-30 11:21:19 +08:00
$(CONTAINER_ENGINE) run $(CONTAINER_ENGINE_RUN_FLAGS) \
-t --privileged --rm \
-v $(CURDIR):/go/src/$(PROJECT) \
-e ROOTLESS_TESTPATH \
$(RUNC_IMAGE) make localrootlessintegration
2022-07-28 16:28:18 +08:00
localrootlessintegration: all
tests/rootless.sh
shell: runcimage
2022-12-30 11:21:19 +08:00
$(CONTAINER_ENGINE) run $(CONTAINER_ENGINE_RUN_FLAGS) \
-ti --privileged --rm \
-v $(CURDIR):/go/src/$(PROJECT) \
$(RUNC_IMAGE) bash
2022-07-28 16:28:18 +08:00
install:
2022-12-30 11:21:19 +08:00
install -D -m0755 runc $(DESTDIR)$(BINDIR)/runc
2022-07-28 16:28:18 +08:00
install-bash:
2022-12-30 11:21:19 +08:00
install -D -m0644 contrib/completions/bash/runc $(DESTDIR)$(PREFIX)/share/bash-completion/completions/runc
2022-07-28 16:28:18 +08:00
2022-12-30 11:21:19 +08:00
install-man: man
install -d -m 755 $(DESTDIR)$(MANDIR)/man8
install -D -m 644 man/man8/*.8 $(DESTDIR)$(MANDIR)/man8
2022-07-28 16:28:18 +08:00
clean:
rm -f runc runc-*
rm -f contrib/cmd/recvtty/recvtty
2022-12-30 11:21:19 +08:00
rm -f contrib/cmd/sd-helper/sd-helper
rm -f contrib/cmd/seccompagent/seccompagent
rm -rf release
rm -rf man/man8
cfmt: C_SRC=$(shell git ls-files '*.c' | grep -v '^vendor/')
cfmt:
indent -linux -l120 -il0 -ppi2 -cp1 -T size_t -T jmp_buf $(C_SRC)
shellcheck:
shellcheck tests/integration/*.bats tests/integration/*.sh \
tests/integration/*.bash tests/*.sh \
script/release_*.sh script/seccomp.sh script/lib.sh
# TODO: add shellcheck for more sh files
shfmt:
shfmt -ln bats -d -w tests/integration/*.bats
shfmt -ln bash -d -w man/*.sh script/* tests/*.sh tests/integration/*.bash
vendor:
$(GO) mod tidy
$(GO) mod vendor
$(GO) mod verify
verify-dependencies: vendor
@test -z "$$(git status --porcelain -- go.mod go.sum vendor/)" \
|| (echo -e "git status:\n $$(git status -- go.mod go.sum vendor/)\nerror: vendor/, go.mod and/or go.sum not up to date. Run \"make vendor\" to update"; exit 1) \
&& echo "all vendor files are up to date."
.PHONY: runc all recvtty sd-helper seccompagent static releaseall release \
localrelease dbuild lint man runcimage \
test localtest unittest localunittest integration localintegration \
rootlessintegration localrootlessintegration shell install install-bash \
install-man clean cfmt shfmt shellcheck \
vendor verify-dependencies