-
Notifications
You must be signed in to change notification settings - Fork 182
/
Makefile
62 lines (51 loc) · 1.86 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# netboot/Makefile
THIS := $(abspath $(lastword $(MAKEFILE_LIST)))
HERE := $(patsubst %/,%,$(dir $(THIS)))
GOCMD:=go
GOMODULECMD:=GO111MODULE=on go
# Local customizations to the above.
ifneq ($(wildcard Makefile.defaults),)
include Makefile.defaults
endif
all:
$(error Please request a specific thing, there is no default target)
.PHONY: ci-prepare
ci-prepare:
$(GOCMD) get -u github.com/estesp/manifest-tool
.PHONY: build
build:
$(GOMODULECMD) install -v ./cmd/pixiecore
.PHONY: test
test:
$(GOMODULECMD) test ./...
$(GOMODULECMD) test -race ./...
.PHONY: lint
lint:
$(GOMODULECMD) tool vet .
REGISTRY=pixiecore
TAG=dev
.PHONY: ci-push-images
ci-push-images:
make -f Makefile.inc push GOARCH=amd64 TAG=$(TAG)-amd64 BINARY=pixiecore REGISTRY=$(REGISTRY)
make -f Makefile.inc push GOARCH=arm TAG=$(TAG)-arm BINARY=pixiecore REGISTRY=$(REGISTRY)
make -f Makefile.inc push GOARCH=arm64 TAG=$(TAG)-arm64 BINARY=pixiecore REGISTRY=$(REGISTRY)
make -f Makefile.inc push GOARCH=ppc64le TAG=$(TAG)-ppc64le BINARY=pixiecore REGISTRY=$(REGISTRY)
make -f Makefile.inc push GOARCH=s390x TAG=$(TAG)-s390x BINARY=pixiecore REGISTRY=$(REGISTRY)
manifest-tool push from-args --platforms linux/amd64,linux/arm,linux/arm64,linux/ppc64le,linux/s390x --template $(REGISTRY)/pixiecore:$(TAG)-ARCH --target $(REGISTRY)/pixiecore:$(TAG)
.PHONY: ci-config
ci-config:
(cd .circleci && go run gen-config.go >config.yml)
.PHONY: update-ipxe
update-ipxe:
$(MAKE) -C third_party/ipxe/src \
EMBED=$(HERE)/pixiecore/boot.ipxe \
bin/ipxe.pxe \
bin/undionly.kpxe \
bin-x86_64-efi/ipxe.efi \
bin-i386-efi/ipxe.efi
go-bindata -o out/ipxe/bindata.go -pkg ipxe -nometadata -nomemcopy \
third_party/ipxe/src/bin/ipxe.pxe \
third_party/ipxe/src/bin/undionly.kpxe \
third_party/ipxe/src/bin-x86_64-efi/ipxe.efi \
third_party/ipxe/src/bin-i386-efi/ipxe.efi
gofmt -s -w out/ipxe/bindata.go