[Build] Optimize the version control for Debian packages (#14557) (#14610)

Why I did it
Optimize the version control for Debian packages.
Fix sonic-slave-buster/sources.list.amd64 not found display issue, need to generate the file before running the shell command to evaluate the sonic image tag.
When using the snapshot mirror, it is not necessary to update the version file based on the base image. It will reduce the version dependency issue, when an image is not run when freezing the version.

How I did it
Not to update the version file when snapshot mirror enabled.

How to verify it
This commit is contained in:
xumia 2023-04-12 15:00:48 +08:00 committed by GitHub
parent 73766c2fa1
commit 4ce33aad75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 1 deletions

View File

@ -203,6 +203,7 @@ $(shell CONFIGURED_ARCH=$(CONFIGURED_ARCH) \
PREPARE_DOCKER=BUILD_SLAVE=y \ PREPARE_DOCKER=BUILD_SLAVE=y \
DEFAULT_CONTAINER_REGISTRY=$(DEFAULT_CONTAINER_REGISTRY) \ DEFAULT_CONTAINER_REGISTRY=$(DEFAULT_CONTAINER_REGISTRY) \
MIRROR_SNAPSHOT=$(MIRROR_SNAPSHOT) \
scripts/prepare_docker_buildinfo.sh \ scripts/prepare_docker_buildinfo.sh \
$(SLAVE_BASE_IMAGE) \ $(SLAVE_BASE_IMAGE) \
$(SLAVE_DIR)/Dockerfile \ $(SLAVE_DIR)/Dockerfile \

View File

@ -23,7 +23,7 @@ if [ -z "$DISTRO" ]; then
[ -z "$DISTRO" ] && DISTRO=jessie [ -z "$DISTRO" ] && DISTRO=jessie
fi fi
if [[ "$IMAGENAME" == docker-base-* ]] || [[ "$IMAGENAME" == docker-ptf ]]; then if [[ "$IMAGENAME" == sonic-slave-* ]] || [[ "$IMAGENAME" == docker-base-* ]] || [[ "$IMAGENAME" == docker-ptf ]]; then
scripts/build_mirror_config.sh ${DOCKERFILE_PATH} $ARCH $DISTRO scripts/build_mirror_config.sh ${DOCKERFILE_PATH} $ARCH $DISTRO
fi fi

View File

@ -351,6 +351,9 @@ update_version_file()
update_version_files() update_version_files()
{ {
local version_names="versions-deb versions-py2 versions-py3" local version_names="versions-deb versions-py2 versions-py3"
if [ "$MIRROR_SNAPSHOT" == y ]; then
version_names="versions-py2 versions-py3"
fi
for version_name in $version_names; do for version_name in $version_names; do
update_version_file $version_name update_version_file $version_name
done done