From 8d7fc58de91c6e013ad8dd474fa70d02a22a6e34 Mon Sep 17 00:00:00 2001 From: Jessica Wagantall Date: Tue, 2 Mar 2021 11:25:28 -0800 Subject: [PATCH] Reorder release-job script Reorder functions and add function labels to make release-job.sh easier to read. Fix "Double quote to prevent globbing" line 34 Issue: RELENG-3376 Signed-off-by: Jessica Wagantall Change-Id: Ic8349f692a50a645a99e884c852013f75332cccd --- .../self-releases-reorder-7b9c9b12c9bd5f26.yaml | 5 + shell/release-job.sh | 399 +++++++++++---------- 2 files changed, 211 insertions(+), 193 deletions(-) create mode 100644 releasenotes/notes/self-releases-reorder-7b9c9b12c9bd5f26.yaml diff --git a/releasenotes/notes/self-releases-reorder-7b9c9b12c9bd5f26.yaml b/releasenotes/notes/self-releases-reorder-7b9c9b12c9bd5f26.yaml new file mode 100644 index 00000000..a465989b --- /dev/null +++ b/releasenotes/notes/self-releases-reorder-7b9c9b12c9bd5f26.yaml @@ -0,0 +1,5 @@ +--- +fixes: + - | + Reorder functions and add function labels to make release-job.sh + easier to read. diff --git a/shell/release-job.sh b/shell/release-job.sh index 66bed669..80521924 100644 --- a/shell/release-job.sh +++ b/shell/release-job.sh @@ -21,7 +21,31 @@ lf-activate-venv lftools pip idna==2.9 lftools jsonschema twine yq readline python -m pip --version python -m pip freeze -#Functions. +########################## +# Set Variables Functions. +########################## + +set_variables_artifact(){ + echo "INFO: Setting artifact variables" + if [[ -z ${VERSION:-} ]]; then + VERSION=$(yq -r ".version" "$release_file") + fi + if [[ -z ${GIT_TAG:-} ]]; then + if grep -q "git_tag" "$release_file" ; then + GIT_TAG=$(yq -r ".git_tag" "$release_file") + else + GIT_TAG="$VERSION" + fi + fi + if [[ -z ${REF:-} ]]; then + REF=$(yq -r ".ref" "$release_file") + fi + + printf "\t%-30s\n" RELEASE_ARTIFACT_INFO: + printf "\t%-30s %s\n" GERRIT_REF_TO_TAG: "$REF" + printf "\t%-30s %s\n" VERSION: "$VERSION" + printf "\t%-30s %s\n" GIT_TAG: "$GIT_TAG" +} set_variables_common(){ echo "INFO: Setting common variables" @@ -95,30 +119,6 @@ set_variables_common(){ printf "\t%-30s %s\n" OVERRIDE_SEMVER_REGEX: "${OVERRIDE_SEMVER_REGEX:-None}" } -set_variables_maven(){ - echo "INFO: Setting maven variables" - if [[ -z ${VERSION:-} ]]; then - VERSION=$(yq -r ".version" "$release_file") - fi - if [[ -z ${GIT_TAG:-} ]]; then - if grep -q "git_tag" "$release_file" ; then - GIT_TAG=$(yq -r ".git_tag" "$release_file") - else - GIT_TAG="$VERSION" - fi - fi - if [[ -z ${LOG_DIR:-} ]]; then - LOG_DIR=$(yq -r ".log_dir" "$release_file") - fi - - # Continuing displaying Release Information (Maven) - printf "\t%-30s\n" RELEASE_MAVEN_INFO: - printf "\t%-30s %s\n" VERSION: "$VERSION" - printf "\t%-30s %s\n" GIT_TAG: "$GIT_TAG" - printf "\t%-30s %s\n" LOG_DIR: "$LOG_DIR" - printf "\t%-30s %s\n" LOGS_URL: "$logs_url" -} - set_variables_container(){ echo "INFO: Setting container variables" if [[ -z ${VERSION:-} ]]; then @@ -153,18 +153,8 @@ set_variables_container(){ printf "\t%-30s %s\n" GIT_TAG: "$GIT_TAG" } -set_variables_pypi(){ - echo "INFO: Setting pypi variables" - if [[ -z ${LOG_DIR:-} ]]; then - LOG_DIR=$(yq -r ".log_dir" "$release_file") - fi - - if [[ -z ${PYPI_PROJECT:-} ]]; then - PYPI_PROJECT=$(yq -r ".pypi_project" "$release_file") - fi - if [[ -z ${PYTHON_VERSION:-} ]]; then - PYTHON_VERSION=$(yq -r ".python_version" "$release_file") - fi +set_variables_maven(){ + echo "INFO: Setting maven variables" if [[ -z ${VERSION:-} ]]; then VERSION=$(yq -r ".version" "$release_file") fi @@ -174,17 +164,17 @@ set_variables_pypi(){ else GIT_TAG="$VERSION" fi - fi + fi + if [[ -z ${LOG_DIR:-} ]]; then + LOG_DIR=$(yq -r ".log_dir" "$release_file") + fi - # Continuing displaying Release Information (pypi) - printf "\t%-30s\n" RELEASE_PYPI_INFO: - printf "\t%-30s %s\n" LOG_DIR: "$LOG_DIR" - printf "\t%-30s %s\n" LOGS_URL: "$logs_url" - printf "\t%-30s %s\n" PYPI_INDEX: "$PYPI_INDEX" # from job configuration - printf "\t%-30s %s\n" PYPI_PROJECT: "$PYPI_PROJECT" - printf "\t%-30s %s\n" PYTHON_VERSION: "$PYTHON_VERSION" + # Continuing displaying Release Information (Maven) + printf "\t%-30s\n" RELEASE_MAVEN_INFO: printf "\t%-30s %s\n" VERSION: "$VERSION" printf "\t%-30s %s\n" GIT_TAG: "$GIT_TAG" + printf "\t%-30s %s\n" LOG_DIR: "$LOG_DIR" + printf "\t%-30s %s\n" LOGS_URL: "$logs_url" } set_variables_packagecloud(){ @@ -217,26 +207,67 @@ set_variables_packagecloud(){ printf "\t%-30s %s\n" GIT_TAG: "$GIT_TAG" } -set_variables_artifact(){ - echo "INFO: Setting artifact variables" - if [[ -z ${VERSION:-} ]]; then - VERSION=$(yq -r ".version" "$release_file") - fi - if [[ -z ${GIT_TAG:-} ]]; then - if grep -q "git_tag" $release_file ; then - GIT_TAG=$(yq -r ".git_tag" "$release_file") - else - GIT_TAG="$VERSION" - fi - fi - if [[ -z ${REF:-} ]]; then - REF=$(yq -r ".ref" "$release_file") - fi +set_variables_pypi(){ + echo "INFO: Setting pypi variables" + if [[ -z ${LOG_DIR:-} ]]; then + LOG_DIR=$(yq -r ".log_dir" "$release_file") + fi - printf "\t%-30s\n" RELEASE_ARTIFACT_INFO: - printf "\t%-30s %s\n" GERRIT_REF_TO_TAG: "$REF" - printf "\t%-30s %s\n" VERSION: "$VERSION" - printf "\t%-30s %s\n" GIT_TAG: "$GIT_TAG" + if [[ -z ${PYPI_PROJECT:-} ]]; then + PYPI_PROJECT=$(yq -r ".pypi_project" "$release_file") + fi + if [[ -z ${PYTHON_VERSION:-} ]]; then + PYTHON_VERSION=$(yq -r ".python_version" "$release_file") + fi + if [[ -z ${VERSION:-} ]]; then + VERSION=$(yq -r ".version" "$release_file") + fi + if [[ -z ${GIT_TAG:-} ]]; then + if grep -q "git_tag" "$release_file" ; then + GIT_TAG=$(yq -r ".git_tag" "$release_file") + else + GIT_TAG="$VERSION" + fi + fi + + # Continuing displaying Release Information (pypi) + printf "\t%-30s\n" RELEASE_PYPI_INFO: + printf "\t%-30s %s\n" LOG_DIR: "$LOG_DIR" + printf "\t%-30s %s\n" LOGS_URL: "$logs_url" + printf "\t%-30s %s\n" PYPI_INDEX: "$PYPI_INDEX" # from job configuration + printf "\t%-30s %s\n" PYPI_PROJECT: "$PYPI_PROJECT" + printf "\t%-30s %s\n" PYTHON_VERSION: "$PYTHON_VERSION" + printf "\t%-30s %s\n" VERSION: "$VERSION" + printf "\t%-30s %s\n" GIT_TAG: "$GIT_TAG" +} + +########################## +# Verify Schema Functions. +########################## + +verify_packagecloud_match_release(){ + echo "INFO: Fetching console log from $logs_url" + wget -q -P /tmp "${logs_url}/"console.log.gz + echo "INFO: Searching for uploaded step, package name $PACKAGE_NAME and version $VERSION in job log" + if zgrep -E "Pushing.*$PACKAGE_NAME.*$VERSION.*success\!" /tmp/console.log.gz; then + echo "INFO: found expected strings in job log" + else + echo "ERROR: failed to find expected strings in job log" + exit 1 + fi +} + +verify_pypi_match_release(){ + echo "INFO: Fetching console log from $logs_url" + wget -q -P /tmp "${logs_url}/"console.log.gz + echo "INFO: Searching for uploaded step, project $PYPI_PROJECT and version $VERSION in job log" + # pypi-upload.sh generates success message with file list + if zgrep -i "uploaded" /tmp/console.log.gz | grep "$PYPI_PROJECT" | grep "$VERSION" ; then + echo "INFO: found expected strings in job log" + else + echo "ERROR: failed to find expected strings in job log" + exit 1 + fi } verify_schema(){ @@ -245,7 +276,6 @@ verify_schema(){ } verify_version(){ - # Override the regex for projects that do not follow https://semver.org OVERRIDE_SEMVER_REGEX="${OVERRIDE_SEMVER_REGEX:-None}" if [[ $OVERRIDE_SEMVER_REGEX == "None" ]]; then @@ -282,31 +312,10 @@ verify_version_match_release(){ fi } -# check prerequisites to detect mistakes in the release YAML file -verify_pypi_match_release(){ - echo "INFO: Fetching console log from $logs_url" - wget -q -P /tmp "${logs_url}/"console.log.gz - echo "INFO: Searching for uploaded step, project $PYPI_PROJECT and version $VERSION in job log" - # pypi-upload.sh generates success message with file list - if zgrep -i "uploaded" /tmp/console.log.gz | grep "$PYPI_PROJECT" | grep "$VERSION" ; then - echo "INFO: found expected strings in job log" - else - echo "ERROR: failed to find expected strings in job log" - exit 1 - fi -} -verify_packagecloud_match_release(){ - echo "INFO: Fetching console log from $logs_url" - wget -q -P /tmp "${logs_url}/"console.log.gz - echo "INFO: Searching for uploaded step, package name $PACKAGE_NAME and version $VERSION in job log" - if zgrep -E "Pushing.*$PACKAGE_NAME.*$VERSION.*success\!" /tmp/console.log.gz; then - echo "INFO: found expected strings in job log" - else - echo "ERROR: failed to find expected strings in job log" - exit 1 - fi -} +##################### +# Tag Repo Functions. +##################### # sigul is only available on Centos # TODO: write tag-github-repo function @@ -358,29 +367,40 @@ tag-git-repo(){ fi } -nexus_release(){ - echo "INFO: Processing nexus release" - for staging_url in $(zcat "$PATCH_DIR"/staging-repo.txt.gz | awk -e '{print $2}'); do - # extract the domain name from URL - NEXUS_URL=$(echo "$staging_url" | sed -e 's|^[^/]*//||' -e 's|/.*$||') - echo "INFO: NEXUS_URL: $NEXUS_URL" - # extract the staging repo from URL - STAGING_REPO=${staging_url#*repositories/} - echo "INFO: Running Nexus Verify" - lftools nexus release -v --server https://"$NEXUS_URL" "$STAGING_REPO" - echo "INFO: Merge will run:" - echo "lftools nexus release --server https://$NEXUS_URL $STAGING_REPO" - done +############################### +# Release Processing Functions. +############################### - #Run the loop twice, to catch errors on either nexus repo - if [[ "$JOB_NAME" =~ "merge" ]] && [[ "$DRY_RUN" = false ]]; then - for staging_url in $(zcat "$PATCH_DIR"/staging-repo.txt.gz | awk -e '{print $2}'); do - NEXUS_URL=$(echo "$staging_url" | sed -e 's|^[^/]*//||' -e 's|/.*$||') - STAGING_REPO=${staging_url#*repositories/} - echo "INFO: Promoting $STAGING_REPO on $NEXUS_URL." - lftools nexus release --server https://"$NEXUS_URL" "$STAGING_REPO" - done - fi +artifact_release_file(){ + echo "INFO: Processing artifact release" + mkdir artifacts + ORG=$(echo "$NEXUS_URL" | awk -F'.' '{print $2}') + + for namequoted in $(yq '.artifacts[].name' $release_file); do + pathquoted=$(yq ".artifacts[] |select(.name==$namequoted) |.path" $release_file) + + #Remove extra yaml quotes + name="${namequoted#\"}" + name="${name%\"}" + path="${pathquoted#\"}" + path="${path%\"}" + + echo "$name" + echo "$path" + echo "INFO: Merge will post artifact: $name" + # Attempt to pull from releases to see if the artifact has been released. + if "${NEXUS_URL}"/content/repositories/releases/org/"${ORG}"/"${VERSION}"/"$name"; then + echo "INFO: $name is already released as version:$VERSION, Continuing..." + else + echo "INFO: $name not found in releases, release will be prepared. Continuing..." + wget "${path}"/"${name}" -o artifacts/"${name}" + if [[ "$JOB_NAME" =~ "merge" ]] && [[ "$DRY_RUN" = false ]]; then + #lftools sign sigul artifacts + curl -v -u : --upload-file "${NEXUS_URL}"/content/repositories/releases/org/"${ORG}"/"${VERSION}"/"${name}" \; + fi + echo "#########################" + fi + done } container_release_file(){ @@ -441,6 +461,61 @@ maven_release_file(){ tag-git-repo } +nexus_release(){ + echo "INFO: Processing nexus release" + for staging_url in $(zcat "$PATCH_DIR"/staging-repo.txt.gz | awk -e '{print $2}'); do + # extract the domain name from URL + NEXUS_URL=$(echo "$staging_url" | sed -e 's|^[^/]*//||' -e 's|/.*$||') + echo "INFO: NEXUS_URL: $NEXUS_URL" + # extract the staging repo from URL + STAGING_REPO=${staging_url#*repositories/} + echo "INFO: Running Nexus Verify" + lftools nexus release -v --server https://"$NEXUS_URL" "$STAGING_REPO" + echo "INFO: Merge will run:" + echo "lftools nexus release --server https://$NEXUS_URL $STAGING_REPO" + done + + #Run the loop twice, to catch errors on either nexus repo + if [[ "$JOB_NAME" =~ "merge" ]] && [[ "$DRY_RUN" = false ]]; then + for staging_url in $(zcat "$PATCH_DIR"/staging-repo.txt.gz | awk -e '{print $2}'); do + NEXUS_URL=$(echo "$staging_url" | sed -e 's|^[^/]*//||' -e 's|/.*$||') + STAGING_REPO=${staging_url#*repositories/} + echo "INFO: Promoting $STAGING_REPO on $NEXUS_URL." + lftools nexus release --server https://"$NEXUS_URL" "$STAGING_REPO" + done + fi +} + +packagecloud_promote(){ + echo "INFO: Preparing to promote $1..." + promote_url="https://packagecloud.io$(curl --netrc-file ~/packagecloud_api \ + --silent https://packagecloud.io/api/v1/repos/"$2"/staging/search?q="$1" \ + | yq -r .[].promote_url)" + echo "INFO: Promoting $1 from staging to release" + curl --netrc-file ~/packagecloud_api -X POST -F \ + destination="$2/release" "$promote_url" \ + | echo "INFO: Promoted package location: \ + https://packagecloud.io$(yq -r .package_html_url)" + git checkout "$REF" + tag-git-repo +} + +packagecloud_verify(){ + echo "INFO: Verifying $1 exists in staging..." + if [[ $1 == $(curl --netrc-file ~/packagecloud_api --silent \ + https://packagecloud.io/api/v1/repos/"$2"/staging/search?q="$1" \ + | yq -r .[].filename) ]]; then + echo "INFO: $1 exists in staging!" + echo "INFO: Existing package location: https://packagecloud.io$(curl \ + --netrc-file ~/packagecloud_api --silent \ + https://packagecloud.io/api/v1/repos/"$2"/staging/search?q="$1" \ + | yq -r .[].package_html_url)" + else + echo "ERROR: $1 does not exist in staging" + exit 1 + fi +} + # calls pip to download binary and source distributions from the specified index, # which requires a recent-in-2019 version. Uploads the files it received. pypi_release_file(){ @@ -486,68 +561,6 @@ pypi_release_file(){ tag-git-repo } -packagecloud_verify(){ - echo "INFO: Verifying $1 exists in staging..." - if [[ $1 == $(curl --netrc-file ~/packagecloud_api --silent \ - https://packagecloud.io/api/v1/repos/"$2"/staging/search?q="$1" \ - | yq -r .[].filename) ]]; then - echo "INFO: $1 exists in staging!" - echo "INFO: Existing package location: https://packagecloud.io$(curl \ - --netrc-file ~/packagecloud_api --silent \ - https://packagecloud.io/api/v1/repos/"$2"/staging/search?q="$1" \ - | yq -r .[].package_html_url)" - else - echo "ERROR: $1 does not exist in staging" - exit 1 - fi -} - -packagecloud_promote(){ - echo "INFO: Preparing to promote $1..." - promote_url="https://packagecloud.io$(curl --netrc-file ~/packagecloud_api \ - --silent https://packagecloud.io/api/v1/repos/"$2"/staging/search?q="$1" \ - | yq -r .[].promote_url)" - echo "INFO: Promoting $1 from staging to release" - curl --netrc-file ~/packagecloud_api -X POST -F \ - destination="$2/release" "$promote_url" \ - | echo "INFO: Promoted package location: \ - https://packagecloud.io$(yq -r .package_html_url)" - git checkout "$REF" - tag-git-repo -} - -artifact_release_file(){ - echo "INFO: Processing artifact release" - mkdir artifacts - ORG=$(echo "$NEXUS_URL" | awk -F'.' '{print $2}') - - for namequoted in $(yq '.artifacts[].name' $release_file); do - pathquoted=$(yq ".artifacts[] |select(.name==$namequoted) |.path" $release_file) - - #Remove extra yaml quotes - name="${namequoted#\"}" - name="${name%\"}" - path="${pathquoted#\"}" - path="${path%\"}" - - echo "$name" - echo "$path" - echo "INFO: Merge will post artifact: $name" - # Attempt to pull from releases to see if the artifact has been released. - if "${NEXUS_URL}"/content/repositories/releases/org/"${ORG}"/"${VERSION}"/"$name"; then - echo "INFO: $name is already released as version:$VERSION, Continuing..." - else - echo "INFO: $name not found in releases, release will be prepared. Continuing..." - wget "${path}"/"${name}" -o artifacts/"${name}" - if [[ "$JOB_NAME" =~ "merge" ]] && [[ "$DRY_RUN" = false ]]; then - #lftools sign sigul artifacts - curl -v -u : --upload-file "${NEXUS_URL}"/content/repositories/releases/org/"${ORG}"/"${VERSION}"/"${name}" \; - fi - echo "#########################" - fi - done -} - ############################## End Function Declarations ################################ # Set common environment variables @@ -557,8 +570,8 @@ set_variables_common # - artifact, release-artifact-schema.yaml # - container, release-container-schema.yaml # - maven, release-schema.yaml -# - pypi, release-pypi-schema.yaml # - packagecloud, release-packagecloud-schema.yaml +# - pypi, release-pypi-schema.yaml case $DISTRIBUTION_TYPE in @@ -574,19 +587,6 @@ case $DISTRIBUTION_TYPE in artifact_release_file ;; - maven) - if $USE_RELEASE_FILE ; then - release_schema="release-schema.yaml" - echo "INFO: Fetching schema $release_schema" - wget -q https://raw.githubusercontent.com/lfit/releng-global-jjb/master/schema/$release_schema - verify_schema - fi - set_variables_maven - verify_version - verify_version_match_release - maven_release_file - ;; - container) if $USE_RELEASE_FILE ; then release_schema="release-container-schema.yaml" @@ -599,17 +599,17 @@ case $DISTRIBUTION_TYPE in container_release_file ;; - pypi) + maven) if $USE_RELEASE_FILE ; then - release_schema="release-pypi-schema.yaml" + release_schema="release-schema.yaml" echo "INFO: Fetching schema $release_schema" - wget -q https://raw.githubusercontent.com/lfit/releng-global-jjb/master/schema/${release_schema} + wget -q https://raw.githubusercontent.com/lfit/releng-global-jjb/master/schema/$release_schema verify_schema fi - set_variables_pypi + set_variables_maven verify_version - verify_pypi_match_release - pypi_release_file + verify_version_match_release + maven_release_file ;; packagecloud) @@ -631,6 +631,19 @@ case $DISTRIBUTION_TYPE in done ;; + pypi) + if $USE_RELEASE_FILE ; then + release_schema="release-pypi-schema.yaml" + echo "INFO: Fetching schema $release_schema" + wget -q https://raw.githubusercontent.com/lfit/releng-global-jjb/master/schema/${release_schema} + verify_schema + fi + set_variables_pypi + verify_version + verify_pypi_match_release + pypi_release_file + ;; + *) echo "ERROR: distribution_type: $DISTRIBUTION_TYPE not supported" exit 1 -- 2.16.6