Rename "tag*" Makefile targets to "build*"

This better matches the `linuxkit pkg build` nomenclature.

Signed-off-by: Ian Campbell <ijc@docker.com>
This commit is contained in:
Ian Campbell 2017-10-09 16:48:48 +01:00
parent 9bb87c0091
commit 13d11f49ba
9 changed files with 28 additions and 28 deletions

View File

@ -94,19 +94,19 @@ ci: test-cross
$(MAKE) $(MAKE)
$(MAKE) install $(MAKE) install
$(MAKE) -C test all $(MAKE) -C test all
$(MAKE) -C pkg tag $(MAKE) -C pkg build
ci-tag: test-cross ci-tag: test-cross
$(MAKE) $(MAKE)
$(MAKE) install $(MAKE) install
$(MAKE) -C test all $(MAKE) -C test all
$(MAKE) -C pkg tag $(MAKE) -C pkg build
ci-pr: test-cross ci-pr: test-cross
$(MAKE) $(MAKE)
$(MAKE) install $(MAKE) install
$(MAKE) -C test pr $(MAKE) -C test pr
$(MAKE) -C pkg tag $(MAKE) -C pkg build
.PHONY: clean .PHONY: clean
clean: clean:

View File

@ -63,7 +63,7 @@ endif
KERNEL_VERSIONS= KERNEL_VERSIONS=
.PHONY: check tag push .PHONY: check build push
# Targets: # Targets:
# fetch: Downloads the kernel sources into ./sources # fetch: Downloads the kernel sources into ./sources
# build: Builds all kernels # build: Builds all kernels

View File

@ -1,5 +1,5 @@
DIRS = $(dir $(shell find . -maxdepth 2 -mindepth 2 -type f -name build.yml)) DIRS = $(dir $(shell find . -maxdepth 2 -mindepth 2 -type f -name build.yml))
.PHONY: push force-push tag forcetag show-tag clean .PHONY: push force-push build forcebuild show-tag clean
push: push:
@set -e; for d in $(DIRS); do linuxkit pkg push "$$d"; done @set -e; for d in $(DIRS); do linuxkit pkg push "$$d"; done
@ -7,10 +7,10 @@ push:
forcepush: forcepush:
@set -e; for d in $(DIRS); do linuxkit pkg push --force "$$d"; done @set -e; for d in $(DIRS); do linuxkit pkg push --force "$$d"; done
tag: build:
@set -e; for d in $(DIRS); do linuxkit pkg build "$$d"; done @set -e; for d in $(DIRS); do linuxkit pkg build "$$d"; done
forcetag: forcebuild:
@set -e; for d in $(DIRS); do linuxkit pkg build --force "$$d"; done @set -e; for d in $(DIRS); do linuxkit pkg build --force "$$d"; done
show-tag: show-tag:

View File

@ -4,13 +4,13 @@ NETWORK ?= weave-v2.0.4
INIT_YAML ?= INIT_YAML ?=
INIT_YAML += network.yaml INIT_YAML += network.yaml
all: tag-container-images build-vm-images all: build-container-images build-vm-images
tag-container-images: build-container-images:
linuxkit pkg build kubernetes linuxkit pkg build kubernetes
tag-cache-images: build-cache-images:
$(MAKE) -C image-cache tag $(MAKE) -C image-cache build
push-container-images: push-container-images:
linuxkit pkg push kubernetes linuxkit pkg push kubernetes

View File

@ -14,17 +14,17 @@ dl/%.tar:
ln $(IMAGES) $${builddir} ; \ ln $(IMAGES) $${builddir} ; \
$(MAKE) -f Makefile.pkg BUILDDIR=$${builddir} CACHE=$(CACHE) $* $(MAKE) -f Makefile.pkg BUILDDIR=$${builddir} CACHE=$(CACHE) $*
.PHONY: tag-common forcetag-common push-common forcepush-common show-tag-common .PHONY: build-common forcebuild-common push-common forcepush-common show-tag-common
tag-common forcetag-common push-common forcepush-common show-tag-common: %-common: $(patsubst %,dl/%.tar,$(COMMON_IMAGES)) build-common forcebuild-common push-common forcepush-common show-tag-common: %-common: $(patsubst %,dl/%.tar,$(COMMON_IMAGES))
@$(MAKE) CACHE=common IMAGES="$^" $*-pkg @$(MAKE) CACHE=common IMAGES="$^" $*-pkg
.PHONY: tag-control-plane forcetag-control-plane push-control-plane forcepush-control-plane show-tag-control-plane .PHONY: build-control-plane forcebuild-control-plane push-control-plane forcepush-control-plane show-tag-control-plane
tag-control-plane forcetag-control-plane push-control-plane forcepush-control-plane show-tag-control-plane: %-control-plane: $(patsubst %,dl/%.tar,$(CONTROL_PLANE_IMAGES)) build-control-plane forcebuild-control-plane push-control-plane forcepush-control-plane show-tag-control-plane: %-control-plane: $(patsubst %,dl/%.tar,$(CONTROL_PLANE_IMAGES))
@$(MAKE) CACHE=control-plane IMAGES="$^" $*-pkg @$(MAKE) CACHE=control-plane IMAGES="$^" $*-pkg
.PHONY: tag push show-tags .PHONY: build forcebuild push forcepush show-tags
tag: tag-common tag-control-plane build: build-common build-control-plane
forcetag: forcetag-common forcetag-control-plane forcebuild: forcebuild-common forcebuild-control-plane
push: push-common push-control-plane push: push-common push-control-plane
forcepush: forcepush-common forcepush-control-plane forcepush: forcepush-common forcepush-control-plane
show-tags: show-tag-common show-tag-control-plane show-tags: show-tag-common show-tag-control-plane

View File

@ -1,5 +1,5 @@
DIRS = $(dir $(shell find . -maxdepth 2 -mindepth 2 -type f -name build.yml)) DIRS = $(dir $(shell find . -maxdepth 2 -mindepth 2 -type f -name build.yml))
.PHONY: push forcepush tag forcetag show-tag clean .PHONY: push forcepush build forcebuild show-tag clean
push: push:
@set -e; for d in $(DIRS); do linuxkit pkg push "$$d"; done @set -e; for d in $(DIRS); do linuxkit pkg push "$$d"; done
@ -7,10 +7,10 @@ push:
forcepush: forcepush:
@set -e; for d in $(DIRS); do linuxkit pkg push --force "$$d"; done @set -e; for d in $(DIRS); do linuxkit pkg push --force "$$d"; done
tag: build:
@set -e; for d in $(DIRS); do linuxkit pkg build "$$d"; done @set -e; for d in $(DIRS); do linuxkit pkg build "$$d"; done
forcetag: forcebuild:
@set -e; for d in $(DIRS); do linuxkit pkg build --force "$$d"; done @set -e; for d in $(DIRS); do linuxkit pkg build --force "$$d"; done
show-tag: show-tag:

View File

@ -4,7 +4,7 @@ DIRS = $(dir $(shell find . -maxdepth 2 -mindepth 2 -type f -name build.yml))
# Note that these are only recursed on for the push target which was the historical behaviour. # Note that these are only recursed on for the push target which was the historical behaviour.
MAKEDIRS = alpine guestfs MAKEDIRS = alpine guestfs
.PHONY: push forcepush tag forcetag show-tag clean .PHONY: push forcepush build forcebuild show-tag clean
push: push:
@set -e; for d in $(DIRS); do linuxkit pkg push "$$d"; done @set -e; for d in $(DIRS); do linuxkit pkg push "$$d"; done
@ -13,10 +13,10 @@ push:
forcepush: forcepush:
@set -e; for d in $(DIRS); do linuxkit pkg push --force "$$d"; done @set -e; for d in $(DIRS); do linuxkit pkg push --force "$$d"; done
tag: build:
@set -e; for d in $(DIRS); do linuxkit pkg build "$$d"; done @set -e; for d in $(DIRS); do linuxkit pkg build "$$d"; done
forcetag: forcebuild:
@set -e; for d in $(DIRS); do linuxkit pkg build --force "$$d"; done @set -e; for d in $(DIRS); do linuxkit pkg build --force "$$d"; done
show-tag: show-tag:

View File

@ -1,4 +1,4 @@
.PHONY: tag push .PHONY: build push
ORG?=linuxkit ORG?=linuxkit
IMAGE=alpine IMAGE=alpine
@ -61,7 +61,7 @@ push: hash iid versions.$(ARCH)
./push-manifest.sh $(ORG) $(IMAGE) ./push-manifest.sh $(ORG) $(IMAGE)
rm -f iid rm -f iid
tag: hash iid versions.$(ARCH) build: hash iid versions.$(ARCH)
docker pull $(ORG)/$(IMAGE):$(shell cat hash) || \ docker pull $(ORG)/$(IMAGE):$(shell cat hash) || \
docker tag $(shell cat iid) $(ORG)/$(IMAGE):$(shell cat hash) docker tag $(shell cat iid) $(ORG)/$(IMAGE):$(shell cat hash)
rm -f iid rm -f iid

View File

@ -1,4 +1,4 @@
.PHONY: tag push .PHONY: build push
IMAGE=guestfs IMAGE=guestfs
@ -18,7 +18,7 @@ push: hash iid
docker push linuxkit/$(IMAGE):$(shell cat hash)) docker push linuxkit/$(IMAGE):$(shell cat hash))
rm -f iid rm -f iid
tag: hash iid build: hash iid
docker pull linuxkit/$(IMAGE):$(shell cat hash) || \ docker pull linuxkit/$(IMAGE):$(shell cat hash) || \
docker tag $(shell cat iid) linuxkit/$(IMAGE):$(shell cat hash) docker tag $(shell cat iid) linuxkit/$(IMAGE):$(shell cat hash)
rm -f iid rm -f iid