#!/bin/bash # # Copyright (c) 2021 The Flatcar Maintainers. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. # >>> This file is supposed to be SOURCED from the repository ROOT. <<< # # packages_tag() should be called w/ the positional INPUT parameters below. # build tag automation stub. # This script will update the versionfile with the OS packages version to build, # and will add a version tag (see INPUT) to the scripts repo. # # PREREQUISITES: # # 1. SDK version is recorded in sdk_container/.repo/manifests/version.txt # 2. SDK container is either # - available via ghcr.io/flatcar/flatcar-sdk-[ARCH]:[VERSION] (official SDK release) # OR # - available via build cache server "/containers/[VERSION]/flatcar-sdk-[ARCH]-[VERSION].tar.gz" # (dev SDK) # # INPUT: # # 1. Version of the TARGET OS image to build (string). # The version pattern '(alpha|beta|stable|lts)-MMMM.m.p' (e.g. 'alpha-3051.0.0') # denotes a "official" build, i.e. a release build to be published. # Use any version diverging from the pattern (e.g. 'alpha-3051.0.0-nightly-4302') for development / CI builds. # A tag of this version will be created in the scripts repo and pushed upstream. # # # OPTIONAL INPUT: # # 1. A file ../scripts.patch to apply with "git am -3" for the scripts repo. # # 2. AVOID_NIGHTLY_BUILD_SHORTCUTS. Environment variable. Tells the script to build the SDK even if nothing has changed since last nightly build. # See the description in ci-config.env. # # OUTPUT: # # 1. Updated scripts repository # - version tag # - sdk_container/.repo/manifests/version.txt denotes new FLATCAR OS version # 2. "./skip-build" as flag file to signal that the build should stop function packages_tag() { # Run a subshell, so the traps, environment changes and global # variables are not spilled into the caller. ( set -euo pipefail _packages_tag_impl "${@}" ) } # -- function _packages_tag_impl() { local version="$1" source ci-automation/ci_automation_common.sh source ci-automation/gpg_setup.sh check_version_string "${version}" source sdk_container/.repo/manifests/version.txt local sdk_version="${FLATCAR_SDK_VERSION}" # Create new tag in scripts repo w/ updated versionfile # Also push the changes to the branch ONLY IF we're doing a nightly # build of the 'flatcar-MAJOR' branch AND we're definitely ON the respective branch local target_branch='' # These variables are here to make it easier to test nightly # builds without messing with actual release branches. local flatcar_branch_prefix='flatcar' local nightly='nightly' # Patterns used below. local nightly_pattern_1='^(stable|alpha|beta|lts)-[0-9.]+-'"${nightly}"'-[-0-9]+$' local nightly_pattern_2='^(stable|alpha|beta|lts)-[0-9.]+(|-'"${nightly}"'-[-0-9]+)$' local flatcar_pattern='^'"${flatcar_branch_prefix}"'-[0-9]+$' if [[ "${version}" =~ ${nightly_pattern_1} ]] \ && [[ "$(git rev-parse --abbrev-ref HEAD)" =~ ${flatcar_pattern} ]] ; then target_branch="$(git rev-parse --abbrev-ref HEAD)" local existing_tag="" # Check for the existing tag only when we allow shortcutting # the builds. That way we can skip the checks for build # shortcutting. if bool_is_true "${AVOID_NIGHTLY_BUILD_SHORTCUTS}"; then echo "Continuing the build because AVOID_NIGHTLY_BUILD_SHORTCUTS is bool true (${AVOID_NIGHTLY_BUILD_SHORTCUTS})" >&2 else existing_tag=$(git tag --points-at HEAD) # exit code is always 0, output may be empty fi # If the found tag is a release or nightly tag, we stop this build if there are no changes if [[ "${existing_tag}" =~ ${nightly_pattern_2} ]]; then local ret=0 git diff --exit-code "${existing_tag}" || ret=$? if [[ ret -eq 0 ]]; then if curl --head --fail --silent --show-error --location "https://${BUILDCACHE_SERVER}/images/amd64/${FLATCAR_VERSION}/flatcar_production_image.bin.bz2" \ && curl --head --fail --silent --show-error --location "https://${BUILDCACHE_SERVER}/images/arm64/${FLATCAR_VERSION}/flatcar_production_image.bin.bz2"; then touch ./skip-build echo "Creating ./skip-build flag file, indicating that the build must not to continue because no new tag got created as there are no changes since tag ${existing_tag} and the Flatcar images exist" >&2 return 0 fi echo "No changes but continuing build because Flatcar images do not exist" elif [[ ret -eq 1 ]]; then echo "Found changes since last tag ${existing_tag}" >&2 else echo "Error: Unexpected git diff return code (${ret})" >&2 return 1 fi fi fi # Create version file ( source sdk_lib/sdk_container_common.sh create_versionfile "$sdk_version" "$version" ) update_and_push_version "${version}" "${target_branch}" apply_local_patches } # --