mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-11-02 22:07:51 +00:00
Updated go-compile to be able to compile remotely. Note I did not update the oter users of go-compile as it does not affect them. Update `go get` instructions to fetch new one, or `make && make install` will still work. Signed-off-by: Justin Cormack <justin.cormack@docker.com>
100 lines
2.7 KiB
Makefile
100 lines
2.7 KiB
Makefile
.PHONY: default all
|
|
default: bin/moby bin/linuxkit
|
|
all: default
|
|
|
|
VERSION="0.0" # dummy for now
|
|
GIT_COMMIT=$(shell git rev-list -1 HEAD)
|
|
|
|
GO_COMPILE=linuxkit/go-compile:5bf17af781df44f07906099402680b9a661f999b@sha256:0bf523bcebb96ccc525f983a118f1fd8cb5e17dbf90e83044ca71bb983000e70
|
|
|
|
MOBY?=bin/moby
|
|
LINUXKIT?=bin/linuxkit
|
|
GOOS=$(shell uname -s | tr '[:upper:]' '[:lower:]')
|
|
GOARCH=amd64
|
|
ifneq ($(GOOS),linux)
|
|
CROSS=-e GOOS=$(GOOS) -e GOARCH=$(GOARCH)
|
|
endif
|
|
|
|
PREFIX?=/usr/local/
|
|
|
|
bin/moby: | bin
|
|
docker run --rm --log-driver=none $(CROSS) $(GO_COMPILE) --clone-path github.com/moby/tool --clone https://github.com/moby/tool.git --package github.com/moby/tool/cmd/moby --ldflags "-X main.GitCommit=$(GIT_COMMIT) -X main.Version=$(VERSION)" -o $@ > tmp_moby_bin.tar
|
|
tar xf tmp_moby_bin.tar > $@
|
|
rm tmp_moby_bin.tar
|
|
touch $@
|
|
|
|
LINUXKIT_DEPS=$(wildcard src/cmd/linuxkit/*.go) Makefile vendor.conf
|
|
bin/linuxkit: $(LINUXKIT_DEPS) | bin
|
|
tar cf - vendor -C src/cmd/linuxkit . | docker run --rm --net=none --log-driver=none -i $(CROSS) $(GO_COMPILE) --package github.com/linuxkit/linuxkit --ldflags "-X main.GitCommit=$(GIT_COMMIT) -X main.Version=$(VERSION)" -o $@ > tmp_linuxkit_bin.tar
|
|
tar xf tmp_linuxkit_bin.tar > $@
|
|
rm tmp_linuxkit_bin.tar
|
|
touch $@
|
|
|
|
test-initrd.img: $(MOBY) test/test.yml
|
|
$(MOBY) build test/test.yml
|
|
|
|
test-bzImage: test-initrd.img
|
|
|
|
.PHONY: test-qemu-efi
|
|
test-qemu-efi: $(LINUXKIT) test-efi.iso
|
|
$(LINUXKIT) run $^ | tee test-efi.log
|
|
$(call check_test_log, test-efi.log)
|
|
|
|
bin:
|
|
mkdir -p $@
|
|
|
|
install:
|
|
cp -R ./bin/* $(PREFIX)/bin
|
|
|
|
define check_test_log
|
|
@cat $1 |grep -q 'test suite PASSED'
|
|
endef
|
|
|
|
.PHONY: test-hyperkit
|
|
test-hyperkit: $(LINUXKIT) test-initrd.img test-bzImage test-cmdline
|
|
rm -f disk.img
|
|
$(LINUXKIT) run test | tee test.log
|
|
$(call check_test_log, test.log)
|
|
|
|
.PHONY: test-gcp
|
|
test-gcp: $(LINUXKIT) test.img.tar.gz
|
|
$(LINUXKIT) push gcp test.img.tar.gz
|
|
$(LINUXKIT) run gcp test | tee test-gcp.log
|
|
$(call check_test_log, test-gcp.log)
|
|
|
|
.PHONY: test
|
|
test: $(LINUXKIT) test-initrd.img test-bzImage test-cmdline
|
|
$(LINUXKIT) run test | tee test.log
|
|
$(call check_test_log, test.log)
|
|
|
|
test-ltp.img.tar.gz: $(MOBY) test/ltp/test-ltp.yml
|
|
$(MOBY) build test/ltp/test-ltp.yml
|
|
|
|
.PHONY: test-ltp
|
|
test-ltp: $(LINUXKIT) test-ltp.img.tar.gz
|
|
$(LINUXKIT) push gcp test-ltp.img.tar.gz
|
|
$(LINUXKIT) run gcp -skip-cleanup -machine n1-highcpu-4 test-ltp | tee test-ltp.log
|
|
$(call check_test_log, test-ltp.log)
|
|
|
|
.PHONY: ci ci-tag ci-pr
|
|
ci:
|
|
$(MAKE) clean
|
|
$(MAKE)
|
|
$(MAKE) test
|
|
$(MAKE) test-ltp
|
|
|
|
ci-tag:
|
|
$(MAKE) clean
|
|
$(MAKE)
|
|
$(MAKE) test
|
|
$(MAKE) test-ltp
|
|
|
|
ci-pr:
|
|
$(MAKE) clean
|
|
$(MAKE)
|
|
$(MAKE) test
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -rf bin *.log *-bzImage *-cmdline *.img *.iso *.tar.gz *.qcow2 *.vhd
|