mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-07-20 09:39:08 +00:00
Merge pull request #4000 from deitch/kernel-ci
kernel makefile target to replace tags using update-component-sha.sh
This commit is contained in:
commit
62d04af55b
@ -34,8 +34,10 @@ DIRTY:=$(shell git update-index -q --refresh && git diff-index --quiet HEAD -- $
|
|||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
REPO_ROOT:=$(shell git rev-parse --show-toplevel)
|
||||||
|
|
||||||
# Path to push-manifest.sh
|
# Path to push-manifest.sh
|
||||||
PUSH_MANIFEST:=$(shell git rev-parse --show-toplevel)/scripts/push-manifest.sh
|
PUSH_MANIFEST:=$(REPO_ROOT)/scripts/push-manifest.sh
|
||||||
|
|
||||||
# determine our architecture
|
# determine our architecture
|
||||||
BUILDERARCH=
|
BUILDERARCH=
|
||||||
@ -65,7 +67,10 @@ notdirty:
|
|||||||
# utility function
|
# utility function
|
||||||
SPACE := $(eval) $(eval)
|
SPACE := $(eval) $(eval)
|
||||||
PERIOD := .
|
PERIOD := .
|
||||||
|
# series - convert a version to a series, e.g. 6.6.13 -> 6.6.x
|
||||||
series = $(word 1,$(subst ., ,$(1))).$(word 2,$(subst ., ,$(1))).x
|
series = $(word 1,$(subst ., ,$(1))).$(word 2,$(subst ., ,$(1))).x
|
||||||
|
# serieswildcard - convert a version with or without a hash to a wildcard, e.g. 6.6.13-anbcd -> 6.6.-*
|
||||||
|
serieswildcard = $(word 1,$(subst ., ,$(1))).$(word 2,$(subst ., ,$(1))).[0-9]+-[0-9a-f]+.*
|
||||||
|
|
||||||
# word 1 is the release, word 2 is the tool
|
# word 1 is the release, word 2 is the tool
|
||||||
RELEASESEP := PART
|
RELEASESEP := PART
|
||||||
@ -171,6 +176,31 @@ pushtool-%: buildtool-%
|
|||||||
linuxkit cache push $(HASHED_IMAGE)
|
linuxkit cache push $(HASHED_IMAGE)
|
||||||
linuxkit cache push $(HASHED_IMAGE) --remote-name $(PLAIN_IMAGE)
|
linuxkit cache push $(HASHED_IMAGE) --remote-name $(PLAIN_IMAGE)
|
||||||
|
|
||||||
|
#
|
||||||
|
# targets for getting names of particular tags and replacing them, like what scripts/update-component-sha.sh does
|
||||||
|
#
|
||||||
|
|
||||||
|
# get the tag for the normal kernel for a particular version. Accepts version or series
|
||||||
|
tag-plainkernel-%:
|
||||||
|
@linuxkit pkg show-tag . --build-yml ./build-kernel.yml --tag "$*-{{.Hash}}"
|
||||||
|
|
||||||
|
# get the tag for the debug kernel for a particular version. Accepts version or series
|
||||||
|
tag-debugkernel-%:
|
||||||
|
@linuxkit pkg show-tag . --build-yml ./build-kernel.yml --tag "$*-dbg-{{.Hash}}"
|
||||||
|
|
||||||
|
# find and replace any usage of the normal kernel with hash for a particular series
|
||||||
|
# will update hash for same semver and/or patch version
|
||||||
|
update-kernel-hash-yaml-%:
|
||||||
|
$(eval NEWTAG=$(shell $(MAKE) tag-plainkernel-$*))
|
||||||
|
$(eval OLDTAG=$(call serieswildcard,$(NEWTAG)))
|
||||||
|
@cd $(REPO_ROOT) && ./scripts/update-component-sha.sh --hash $(OLDTAG) $(NEWTAG)
|
||||||
|
|
||||||
|
# find and replace any usage of the normal kernel with semver for most recent series
|
||||||
|
update-kernel-semver-yaml-%:
|
||||||
|
$(eval NEWTAG=linuxkit/kernel:$*)
|
||||||
|
$(eval OLDTAG=linuxkit/kernel:[0-9]+.[0-9]+.[0-9]+)
|
||||||
|
@cd $(REPO_ROOT) && ./scripts/update-component-sha.sh --hash $(OLDTAG) $(NEWTAG)
|
||||||
|
|
||||||
# Target for kernel config
|
# Target for kernel config
|
||||||
kconfig:
|
kconfig:
|
||||||
ifeq (${KCONFIG_TAG},)
|
ifeq (${KCONFIG_TAG},)
|
||||||
|
@ -70,7 +70,7 @@ case "${mode}" in
|
|||||||
old=$1
|
old=$1
|
||||||
new=$2
|
new=$2
|
||||||
|
|
||||||
git grep -w -l "\b$old\b" -- '*.yml' '*.yaml' '*.yml.in' '*.yaml.in' '*/Dockerfile' '*/Makefile' | grep -v /vendor/ | xargs sed -i.bak -e "s,$old,$new,g"
|
git grep -E -l "\b$old\b" -- '*.yml' '*.yaml' '*.yml.in' '*.yaml.in' '*/Dockerfile' '*/Makefile' | grep -v /vendor/ | while read -r file; do sed -ri.bak -e "s,$old,$new,g" "$file"; done
|
||||||
;;
|
;;
|
||||||
--image)
|
--image)
|
||||||
if [ $# -lt 1 ] ; then
|
if [ $# -lt 1 ] ; then
|
||||||
|
Loading…
Reference in New Issue
Block a user