Fix: Ensure tag and object are pushed together
[releng/global-jjb.git] / shell / release-job.sh
1 #!/bin/bash -l
2 # SPDX-License-Identifier: EPL-1.0
3 ##############################################################################
4 # Copyright (c) 2019 The Linux Foundation and others.
5 #
6 # All rights reserved. This program and the accompanying materials
7 # are made available under the terms of the Eclipse Public License v1.0
8 # which accompanies this distribution, and is available at
9 # http://www.eclipse.org/legal/epl-v10.html
10 ##############################################################################
11 echo "---> release-job.sh"
12 set -eu -o pipefail
13
14 # shellcheck disable=SC1090
15 source ~/lf-env.sh
16
17 # Version controlled by JJB_VERSION
18 lf-activate-venv lftools pip idna==2.9 lftools jsonschema twine yq readline
19
20 # show installed versions
21 python -m pip --version
22 python -m pip freeze
23
24 ##########################
25 # Set Variables Functions.
26 ##########################
27
28 set_variables_artifact(){
29     echo "INFO: Setting artifact variables"
30     if [[ -z ${VERSION:-} ]]; then
31         VERSION=$(yq -r ".version" "$release_file")
32     fi
33     if [[ -z ${GIT_TAG:-} ]]; then
34         if grep -q "git_tag" "$release_file" ; then
35             GIT_TAG=$(yq -r ".git_tag" "$release_file")
36         else
37             GIT_TAG="$VERSION"
38         fi
39     fi
40     if [[ -z ${REF:-} ]]; then
41         REF=$(yq -r ".ref" "$release_file")
42     fi
43
44     printf "\t%-30s\n" RELEASE_ARTIFACT_INFO:
45     printf "\t%-30s %s\n" GERRIT_REF_TO_TAG: "$REF"
46     printf "\t%-30s %s\n" VERSION: "$VERSION"
47     printf "\t%-30s %s\n" GIT_TAG: "$GIT_TAG"
48 }
49
50 set_variables_common(){
51     echo "INFO: Setting common variables"
52     if [[ -z ${LOGS_SERVER:-} ]] && [[ -z ${CDN_URL:-} ]]; then
53         echo "ERROR: LOGS_SERVER or CDN_URL not defined"
54         exit 1
55     fi
56     NEXUS_PATH="${SILO}/${JENKINS_HOSTNAME}/"
57     # Verify if using release file or parameters
58     if $USE_RELEASE_FILE ; then
59         release_files=$(git diff-tree -m --no-commit-id -r "$GIT_COMMIT" "$GIT_COMMIT^1" \
60             --name-only -- "releases/" ".releases/")
61         if (( $(grep -c . <<<"$release_files") > 1 )); then
62             echo "INFO: RELEASE FILES ARE AS FOLLOWS: $release_files"
63             echo "ERROR: Adding multiple release files in the same commit"
64             echo "ERROR: OR rename/amend/delete of existing files is not supported."
65             exit 1
66         else
67             release_file="$release_files"
68             echo "INFO: RELEASE FILE: $release_files"
69         fi
70     else
71         echo "INFO: This job is built with parameters, no release file needed."
72         release_file="None"
73     fi
74
75     if [[ -z ${LOG_DIR:-} ]]; then
76         LOG_DIR=$(yq -r ".log_dir" "$release_file")
77     fi
78     if [[ -n ${LOGS_SERVER:-} ]]; then
79         logs_url="${LOGS_SERVER}/${NEXUS_PATH}${LOG_DIR}"
80     elif [[ -n ${CDN_URL:-} ]]; then
81         logs_url="https://${CDN_URL:-}/logs/${NEXUS_PATH}${LOG_DIR}"
82     fi
83     logs_url=${logs_url%/}  # strip any trailing '/'
84
85     # Jenkins parameter drop-down defaults DISTRIBUTION_TYPE to None
86     # in the contain/maven release job; get value from release yaml.
87     # Packagecloud and PyPI jobs set the appropriate value.
88     DISTRIBUTION_TYPE="${DISTRIBUTION_TYPE:-None}"
89     if [[ $DISTRIBUTION_TYPE == "None" ]]; then
90         if ! DISTRIBUTION_TYPE=$(yq -r ".distribution_type" "$release_file"); then
91             echo "ERROR: Failed to get distribution_type from $release_file"
92             exit 1
93         fi
94     fi
95
96     PATCH_DIR=$(mktemp -d)
97
98     TAG_RELEASE="${TAG_RELEASE:-None}"
99     if [[ $TAG_RELEASE == "None" ]]; then
100         if grep -q "tag_release" $release_file ; then
101             TAG_RELEASE=$(yq -r .tag_release "$release_file")
102         else
103             TAG_RELEASE=true
104         fi
105     fi
106
107     # Displaying Release Information (Common variables)
108     printf "\t%-30s\n" RELEASE_ENVIRONMENT_INFO:
109     printf "\t%-30s %s\n" RELEASE_FILE: "$release_file"
110     printf "\t%-30s %s\n" LOGS_SERVER: "${LOGS_SERVER:-None}"
111     printf "\t%-30s %s\n" CDN_URL: "${CDN_URL:-None}"
112     printf "\t%-30s %s\n" NEXUS_PATH: "$NEXUS_PATH"
113     printf "\t%-30s %s\n" JENKINS_HOSTNAME: "$JENKINS_HOSTNAME"
114     printf "\t%-30s %s\n" SILO: "$SILO"
115     printf "\t%-30s %s\n" PROJECT: "$PROJECT"
116     printf "\t%-30s %s\n" PROJECT-DASHED: "${PROJECT//\//-}"
117     printf "\t%-30s %s\n" TAG_RELEASE: "$TAG_RELEASE"
118     printf "\t%-30s %s\n" DISTRIBUTION_TYPE: "$DISTRIBUTION_TYPE"
119     printf "\t%-30s %s\n" OVERRIDE_SEMVER_REGEX: "${OVERRIDE_SEMVER_REGEX:-None}"
120 }
121
122 set_variables_container(){
123     echo "INFO: Setting container variables"
124     if [[ -z ${VERSION:-} ]]; then
125         VERSION=$(yq -r ".container_release_tag" "$release_file")
126     fi
127     if [[ -z ${GIT_TAG:-} ]]; then
128         if grep -q "git_tag" "$release_file" ; then
129             GIT_TAG=$(yq -r ".git_tag" "$release_file")
130         else
131             GIT_TAG="$VERSION"
132         fi
133     fi
134     if grep -q "container_pull_registry" "$release_file" ; then
135         CONTAINER_PULL_REGISTRY=$(yq -r ".container_pull_registry" "$release_file")
136     fi
137     if grep -q "container_push_registry" "$release_file" ; then
138         CONTAINER_PUSH_REGISTRY=$(yq -r ".container_push_registry" "$release_file")
139     fi
140     # Make sure both pull and push registries are defined
141     if [ -z ${CONTAINER_PULL_REGISTRY+x} ] || [ -z ${CONTAINER_PUSH_REGISTRY+x} ]; then
142         echo "ERROR: CONTAINER_PULL_REGISTRY and CONTAINER_PUSH_REGISTRY need to be defined"
143         exit 1
144     fi
145     ref=$(yq -r ".ref" "$release_file")
146
147     # Continuing displaying Release Information (Container)
148     printf "\t%-30s\n" RELEASE_CONTAINER_INFO:
149     printf "\t%-30s %s\n" CONTAINER_RELEASE_TAG: "$VERSION"
150     printf "\t%-30s %s\n" CONTAINER_PULL_REGISTRY: "$CONTAINER_PULL_REGISTRY"
151     printf "\t%-30s %s\n" CONTAINER_PUSH_REGISTRY: "$CONTAINER_PUSH_REGISTRY"
152     printf "\t%-30s %s\n" GIT_REF_TO_TAG: "$ref"
153     printf "\t%-30s %s\n" GIT_TAG: "$GIT_TAG"
154 }
155
156 set_variables_maven(){
157     echo "INFO: Setting maven variables"
158     if [[ -z ${VERSION:-} ]]; then
159         VERSION=$(yq -r ".version" "$release_file")
160     fi
161     if [[ -z ${GIT_TAG:-} ]]; then
162         if grep -q "git_tag" "$release_file" ; then
163             GIT_TAG=$(yq -r ".git_tag" "$release_file")
164         else
165             GIT_TAG="$VERSION"
166         fi
167     fi
168     if [[ -z ${LOG_DIR:-} ]]; then
169         LOG_DIR=$(yq -r ".log_dir" "$release_file")
170     fi
171
172     # Continuing displaying Release Information (Maven)
173     printf "\t%-30s\n" RELEASE_MAVEN_INFO:
174     printf "\t%-30s %s\n" VERSION: "$VERSION"
175     printf "\t%-30s %s\n" GIT_TAG: "$GIT_TAG"
176     printf "\t%-30s %s\n" LOG_DIR: "$LOG_DIR"
177     printf "\t%-30s %s\n" LOGS_URL: "$logs_url"
178 }
179
180 set_variables_packagecloud(){
181     echo "INFO: Setting packagecloud variables"
182     if [[ -z ${VERSION:-} ]]; then
183         VERSION=$(yq -r ".version" "$release_file")
184     fi
185     if [[ -z ${GIT_TAG:-} ]]; then
186         if grep -q "git_tag" $release_file ; then
187             GIT_TAG=$(yq -r ".git_tag" "$release_file")
188         else
189             GIT_TAG="$VERSION"
190         fi
191     fi
192     if [[ -z ${LOG_DIR:-} ]]; then
193         LOG_DIR=$(yq -r ".log_dir" "$release_file")
194     fi
195     if [[ -z ${REF:-} ]]; then
196         REF=$(yq -r ".ref" "$release_file")
197     fi
198     if [[ -z ${PACKAGE_NAME:-} ]]; then
199         PACKAGE_NAME=$(yq -r ".package_name" "$release_file")
200     fi
201
202     printf "\t%-30s %s\n" PACKAGE_NAME: "$PACKAGE_NAME"
203     printf "\t%-30s %s\n" LOG_DIR: "$LOG_DIR"
204     printf "\t%-30s %s\n" LOGS_URL: "$logs_url"
205     printf "\t%-30s %s\n" GIT_REF_TO_TAG: "$REF"
206     printf "\t%-30s %s\n" VERSION: "$VERSION"
207     printf "\t%-30s %s\n" GIT_TAG: "$GIT_TAG"
208 }
209
210 set_variables_pypi(){
211     echo "INFO: Setting pypi variables"
212     if [[ -z ${LOG_DIR:-} ]]; then
213         LOG_DIR=$(yq -r ".log_dir" "$release_file")
214     fi
215
216     if [[ -z ${PYPI_PROJECT:-} ]]; then
217         PYPI_PROJECT=$(yq -r ".pypi_project" "$release_file")
218     fi
219     if [[ -z ${PYTHON_VERSION:-} ]]; then
220         PYTHON_VERSION=$(yq -r ".python_version" "$release_file")
221     fi
222     if [[ -z ${VERSION:-} ]]; then
223         VERSION=$(yq -r ".version" "$release_file")
224     fi
225     if [[ -z ${GIT_TAG:-} ]]; then
226         if grep -q "git_tag" "$release_file" ; then
227             GIT_TAG=$(yq -r ".git_tag" "$release_file")
228         else
229             GIT_TAG="$VERSION"
230         fi
231     fi
232
233     # Continuing displaying Release Information (pypi)
234     printf "\t%-30s\n" RELEASE_PYPI_INFO:
235     printf "\t%-30s %s\n" LOG_DIR: "$LOG_DIR"
236     printf "\t%-30s %s\n" LOGS_URL: "$logs_url"
237     printf "\t%-30s %s\n" PYPI_INDEX: "$PYPI_INDEX" # from job configuration
238     printf "\t%-30s %s\n" PYPI_PROJECT: "$PYPI_PROJECT"
239     printf "\t%-30s %s\n" PYTHON_VERSION: "$PYTHON_VERSION"
240     printf "\t%-30s %s\n" VERSION: "$VERSION"
241     printf "\t%-30s %s\n" GIT_TAG: "$GIT_TAG"
242 }
243
244 ##########################
245 # Verify Schema Functions.
246 ##########################
247
248 verify_packagecloud_match_release(){
249     echo "INFO: Fetching console log from $logs_url"
250     wget -q -P /tmp "${logs_url}/"console.log.gz
251     echo "INFO: Searching for uploaded step, package name $PACKAGE_NAME and version $VERSION in job log"
252     if  zgrep -E "Pushing.*$PACKAGE_NAME.*$VERSION.*success\!" /tmp/console.log.gz; then
253         echo "INFO: found expected strings in job log"
254     else
255         echo "ERROR: failed to find expected strings in job log"
256         exit 1
257     fi
258 }
259
260 verify_pypi_match_release(){
261     echo "INFO: Fetching console log from $logs_url"
262     wget -q -P /tmp "${logs_url}/"console.log.gz
263     echo "INFO: Searching for uploaded step, project $PYPI_PROJECT and version $VERSION in job log"
264     # pypi-upload.sh generates success message with file list
265     if zgrep -i "uploaded" /tmp/console.log.gz | grep "$PYPI_PROJECT" | grep "$VERSION" ; then
266         echo "INFO: found expected strings in job log"
267     else
268         echo "ERROR: failed to find expected strings in job log"
269         exit 1
270     fi
271 }
272
273 verify_schema(){
274     echo "INFO: Verifying $release_file against schema $release_schema"
275     lftools schema verify "$release_file" "$release_schema"
276 }
277
278 verify_version(){
279     # Override the regex for projects that do not follow https://semver.org
280     OVERRIDE_SEMVER_REGEX="${OVERRIDE_SEMVER_REGEX:-None}"
281     if [[ $OVERRIDE_SEMVER_REGEX == "None" ]]; then
282         # Use the semver regex taken from https://github.com/fsaintjacques/semver-tool
283         pat1="(0|[1-9][0-9]*)\.(0|[1-9][0-9]*)\.(0|[1-9][0-9]*)"
284         pat2="(0|[1-9][0-9]*|[0-9]*[A-Za-z-][0-9A-Za-z-]*)"
285         pat3="(\+[0-9A-Za-z-]+(\.[0-9A-Za-z-]+)*)"
286         semver_regex="^[vV]?${pat1}(\-${pat2}(\.${pat2})*)?${pat3}?$"
287     else
288         semver_regex="${OVERRIDE_SEMVER_REGEX}"
289     fi
290
291     # Verify SemVer "#.#.#" (SemVer) or "v#.#.#"
292     echo "INFO: Verifying version $VERSION"
293     if [[ $VERSION =~ $semver_regex ]]; then
294         echo "INFO: The version $VERSION is valid"
295     else
296         echo "ERROR: The version $VERSION is not valid"
297         echo "ERROR: Valid versions are \"#.#.#\" (SemVer) or \"v#.#.#\""
298         echo "ERROR: Valid version will be matched against \"${semver_regex}\""
299         echo "ERROR: Refer to https://semver.org/ for more details on SemVer"
300         echo "ERROR: Refer SemVer examples from https://github.com/fsaintjacques/semver-tool/#examples"
301         exit 1
302     fi
303 }
304
305 verify_version_match_release(){
306     echo "INFO: Fetching console log from $logs_url"
307     wget -P /tmp "${logs_url}/"console.log.gz
308     echo "INFO: Searching for uploaded step and version $VERSION in job log"
309     if zgrep "Successfully uploaded" /tmp/console.log.gz | grep "$VERSION"; then
310         echo "INFO: found expected strings in job log"
311     else
312         echo "ERROR: Defined version in release file does not match staging repo artifacts version to be released"
313         echo "ERROR: Please make sure maven stage job log dir and release version are both correct"
314         exit 1
315     fi
316 }
317
318
319 #####################
320 # Tag Repo Functions.
321 #####################
322
323 # sigul is only available on Centos
324 # TODO: write tag-github-repo function
325 tag-git-repo(){
326     if [[ $TAG_RELEASE == false ]]; then
327         echo "INFO: Skipping code repo tag"
328         return
329     fi
330
331     if [[ -z ${GERRIT_URL:-} ]]; then
332         GIT_REPO_BASE=github
333     else
334         GIT_REPO_BASE=gerrit
335     fi
336
337     echo "INFO: tag repo with $GIT_TAG"
338     # Import public signing key
339     gpg --import "$SIGNING_PUBKEY"
340     if type=$(git cat-file -t "$GIT_TAG"); then
341         if [[ $type == "tag" ]]; then
342             echo "INFO: Repo already has signed tag $GIT_TAG, nothing to do"
343         else
344             echo "ERROR: Repo has lightweight tag $GIT_TAG, blocks push of signed tag"
345             exit 1
346         fi
347     else
348         echo "INFO: Repo has not yet been tagged $GIT_TAG"
349         git tag -am "${PROJECT//\//-} $GIT_TAG" "$GIT_TAG"
350         sigul --batch -c "$SIGUL_CONFIG" sign-git-tag "$SIGUL_KEY" "$GIT_TAG" < "$SIGUL_PASSWORD"
351         echo "INFO: Showing latest signature for $PROJECT:"
352         echo "INFO: git tag -v $GIT_TAG"
353         git tag -v "$GIT_TAG"
354
355         ########## Merge Part ##############
356         if [[ "$JOB_NAME" =~ "merge" ]] && [[ "$DRY_RUN" = false ]]; then
357             echo "INFO: Running merge, pushing tag"
358             if [[ $GIT_REPO_BASE == "gerrit" ]]; then
359                 gerrit_ssh=$(echo "$GERRIT_URL" | awk -F"/" '{print $3}')
360                 git remote set-url origin ssh://"$RELEASE_USERNAME"@"$gerrit_ssh":29418/"$PROJECT"
361                 echo -e "Host $gerrit_ssh\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config
362                 chmod 600 ~/.ssh/config
363             else
364                 git remote set-url origin "$GIT_CLONE_URL""$RELEASE_USERNAME"/"$PROJECT".git
365             fi
366             git config user.name "$RELEASE_USERNAME"
367             git config user.email "$RELEASE_EMAIL"
368             # Check if sentinal file exists
369             if [[ ! -f .testhash ]]; then
370                 git push origin "${GERRIT_BRANCH}" "$GIT_TAG"
371             else
372                 git push origin "$GIT_TAG"
373             fi
374         fi
375     fi
376 }
377
378 ###############################
379 # Release Processing Functions.
380 ###############################
381
382 artifact_release_file(){
383     echo "INFO: Processing artifact release"
384     mkdir artifacts
385     ORG=$(echo "$NEXUS_URL" | awk -F'.' '{print $2}')
386
387     for namequoted in $(yq '.artifacts[].name' $release_file); do
388         pathquoted=$(yq ".artifacts[] |select(.name==$namequoted) |.path" $release_file)
389
390         #Remove extra yaml quotes
391         name="${namequoted#\"}"
392         name="${name%\"}"
393         path="${pathquoted#\"}"
394         path="${path%\"}"
395
396         echo "$name"
397         echo "$path"
398         echo "INFO: Merge will post artifact: $name"
399         # Attempt to pull from releases to see if the artifact has been released.
400         if "${NEXUS_URL}"/content/repositories/releases/org/"${ORG}"/"${VERSION}"/"$name"; then
401             echo "INFO: $name is already released as version:$VERSION, Continuing..."
402         else
403             echo "INFO: $name not found in releases, release will be prepared. Continuing..."
404             wget "${path}"/"${name}" -o artifacts/"${name}"
405             if [[ "$JOB_NAME" =~ "merge" ]] && [[ "$DRY_RUN" = false ]]; then
406                 #lftools sign sigul artifacts
407                 curl -v -u <NEXUSUSER>:<NEXUSPASS> --upload-file \
408                     "${NEXUS_URL}"/content/repositories/releases/org/"${ORG}"/"${VERSION}"/"${name}" \;
409             fi
410             echo "#########################"
411         fi
412     done
413 }
414
415 container_release_file(){
416     echo "INFO: Processing container release"
417     docker --version
418     local lfn_umbrella
419     lfn_umbrella="$(echo "$GERRIT_URL" | awk -F"." '{print $2}')"
420
421     for namequoted in $(yq '.containers[].name' $release_file); do
422         versionquoted=$(yq ".containers[] |select(.name==$namequoted) |.version" $release_file)
423
424         #Remove extra yaml quotes
425         name="${namequoted#\"}"
426         name="${name%\"}"
427         version="${versionquoted#\"}"
428         version="${version%\"}"
429
430         echo "$name"
431         echo "$version"
432         echo "INFO: Merge will release $name $version as $VERSION"
433         # Attempt to pull from releases registry to see if the image has been released.
434         if docker pull "$CONTAINER_PUSH_REGISTRY"/"$lfn_umbrella"/"$name":"$VERSION"; then
435             echo "INFO: $VERSION is already released for image $name, Continuing..."
436         else
437             echo "INFO: $VERSION not found in releases, release will be prepared. Continuing..."
438             docker pull "$CONTAINER_PULL_REGISTRY"/"$lfn_umbrella"/"$name":"$version"
439             container_image_id=$(docker images | grep "$name" | grep "$version" | awk '{print $3}')
440             echo "INFO: Merge will run the following commands:"
441             echo "docker tag $container_image_id $CONTAINER_PUSH_REGISTRY/$lfn_umbrella/$name:$VERSION"
442             echo "docker push $CONTAINER_PUSH_REGISTRY/$lfn_umbrella/$name:$VERSION"
443             if [[ "$JOB_NAME" =~ "merge" ]]; then
444                 docker tag "$container_image_id" "$CONTAINER_PUSH_REGISTRY"/"$lfn_umbrella"/"$name":"$VERSION"
445                 docker push "$CONTAINER_PUSH_REGISTRY"/"$lfn_umbrella"/"$name":"$VERSION"
446             fi
447             echo "#########################"
448         fi
449     done
450
451     echo "INFO: Merge will tag ref: $ref"
452     git checkout "$ref"
453     tag-git-repo
454 }
455
456 maven_release_file(){
457     echo "INFO: Processing maven release"
458     echo "INFO: wget -P $PATCH_DIR ${logs_url}/staging-repo.txt.gz"
459     wget -P "$PATCH_DIR" "${logs_url}/"staging-repo.txt.gz
460     pushd "$PATCH_DIR"
461         echo "INFO: wget ${logs_url}/patches/{${PROJECT//\//-}.bundle,taglist.log.gz}"
462         wget "${logs_url}"/patches/{"${PROJECT//\//-}".bundle,taglist.log.gz}
463         gunzip taglist.log.gz
464         cat "$PATCH_DIR"/taglist.log
465     popd
466
467     # compare if the commit sha1 from taglist is the same origin/${GERRIT_BRANCH}
468     # ensure that the tag lands on the target branch
469     # forward from the tagging point, then a spur commit is created
470     # for the tag
471     taghash="$(awk '{print $NF}' "$PATCH_DIR/taglist.log")"
472     if [ "${taghash}" = $(git rev-parse origin/${GERRIT_BRANCH}) ]; then
473         git checkout "origin/${GERRIT_BRANCH}"
474         # sentinal file
475         touch .testhash
476     else
477         git checkout "${taghash}"
478     fi
479
480     git fetch "$PATCH_DIR/${PROJECT//\//-}.bundle"
481     git merge --ff-only FETCH_HEAD
482     nexus_release
483     tag-git-repo
484 }
485
486 nexus_release(){
487     echo "INFO: Processing nexus release"
488     for staging_url in $(zcat "$PATCH_DIR"/staging-repo.txt.gz | awk -e '{print $2}'); do
489         # extract the domain name from URL
490         NEXUS_URL=$(echo "$staging_url" | sed -e 's|^[^/]*//||' -e 's|/.*$||')
491         echo "INFO: NEXUS_URL: $NEXUS_URL"
492         # extract the staging repo from URL
493         STAGING_REPO=${staging_url#*repositories/}
494         echo "INFO: Running Nexus Verify"
495         lftools nexus release -v --server https://"$NEXUS_URL" "$STAGING_REPO"
496         echo "INFO: Merge will run:"
497         echo "lftools nexus release --server https://$NEXUS_URL $STAGING_REPO"
498     done
499
500     #Run the loop twice, to catch errors on either nexus repo
501     if [[ "$JOB_NAME" =~ "merge" ]] && [[ "$DRY_RUN" = false ]]; then
502         for staging_url in $(zcat "$PATCH_DIR"/staging-repo.txt.gz | awk -e '{print $2}'); do
503             NEXUS_URL=$(echo "$staging_url" | sed -e 's|^[^/]*//||' -e 's|/.*$||')
504             STAGING_REPO=${staging_url#*repositories/}
505             echo "INFO: Promoting $STAGING_REPO on $NEXUS_URL."
506             lftools nexus release --server https://"$NEXUS_URL" "$STAGING_REPO"
507         done
508     fi
509 }
510
511 packagecloud_promote(){
512     echo "INFO: Preparing to promote $1..."
513     promote_url="https://packagecloud.io$(curl --netrc-file ~/packagecloud_api \
514         --silent https://packagecloud.io/api/v1/repos/"$2"/staging/search?q="$1" \
515         | yq -r .[].promote_url)"
516     echo "INFO: Promoting $1 from staging to release"
517     curl --netrc-file ~/packagecloud_api -X POST -F \
518         destination="$2/release" "$promote_url" \
519         | echo "INFO: Promoted package location: \
520         https://packagecloud.io$(yq -r .package_html_url)"
521     git checkout "$REF"
522     tag-git-repo
523 }
524
525 packagecloud_verify(){
526     echo "INFO: Verifying $1 exists in staging..."
527     if [[ $1 == $(curl --netrc-file ~/packagecloud_api --silent \
528         https://packagecloud.io/api/v1/repos/"$2"/staging/search?q="$1" \
529         | yq -r .[].filename) ]]; then
530         echo "INFO: $1 exists in staging!"
531         echo "INFO: Existing package location: https://packagecloud.io$(curl \
532             --netrc-file ~/packagecloud_api --silent \
533             https://packagecloud.io/api/v1/repos/"$2"/staging/search?q="$1" \
534             | yq -r .[].package_html_url)"
535     else
536         echo "ERROR: $1 does not exist in staging"
537         exit 1
538     fi
539 }
540
541 # calls pip to download binary and source distributions from the specified index,
542 # which requires a recent-in-2019 version.  Uploads the files it received.
543 pypi_release_file(){
544     echo "INFO: Processing pypi release"
545     tgtdir=dist
546     mkdir $tgtdir
547     pip_pfx="pip download -d $tgtdir --no-deps --python-version $PYTHON_VERSION -i $PYPI_INDEX"
548     module="$PYPI_PROJECT==$VERSION"
549     pip_bin="$pip_pfx $module"
550     echo "INFO: downloading binary: $pip_bin"
551     if ! $pip_bin ; then
552         echo "WARN: failed to download binary distribution"
553     fi
554     pip_src="$pip_pfx --no-binary=:all: $module"
555     echo "INFO: downloading source: $pip_src"
556     if ! $pip_src ; then
557         echo "WARN: failed to download source distribution"
558     fi
559     echo "INFO: Checking files in $tgtdir"
560     # shellcheck disable=SC2012
561     filecount=$(ls $tgtdir | wc -l)
562     if [[ $filecount = 0 ]] ; then
563         echo "ERROR: no files downloaded"
564         exit 1
565     else
566         # shellcheck disable=SC2046
567         echo "INFO: downloaded $filecount distributions: " $(ls $tgtdir)
568     fi
569
570     if [[ ! "$JOB_NAME" =~ "merge" ]] ; then
571         echo "INFO: not a merge job, not uploading files"
572         return
573     fi
574
575     cmd="twine upload -r $REPOSITORY $tgtdir/*"
576     if $DRY_RUN; then
577         echo "INFO: dry-run is set, echoing command only"
578         echo "$cmd"
579     else
580         echo "INFO: uploading $filecount distributions to repo $REPOSITORY"
581         $cmd
582     fi
583     tag-git-repo
584 }
585
586 ##############################  End Function Declarations  ################################
587
588 # Set common environment variables
589 set_variables_common
590
591 # Determine the type of release:
592 #   - artifact, release-artifact-schema.yaml
593 #   - container, release-container-schema.yaml
594 #   - maven, release-schema.yaml
595 #   - packagecloud, release-packagecloud-schema.yaml
596 #   - pypi,  release-pypi-schema.yaml
597
598 case $DISTRIBUTION_TYPE in
599
600     artifact)
601         if $USE_RELEASE_FILE ; then
602             release_schema="release-artifact-schema.yaml"
603             echo "INFO: Fetching schema $release_schema"
604             wget -q https://raw.githubusercontent.com/lfit/releng-global-jjb/master/schema/${release_schema}
605             verify_schema
606         fi
607         set_variables_artifact
608         verify_version
609         artifact_release_file
610         ;;
611
612     container)
613         if $USE_RELEASE_FILE ; then
614             release_schema="release-container-schema.yaml"
615             echo "INFO: Fetching schema $release_schema"
616             wget -q https://raw.githubusercontent.com/lfit/releng-global-jjb/master/schema/${release_schema}
617             verify_schema
618         fi
619         set_variables_container
620         verify_version
621         container_release_file
622         ;;
623
624     maven)
625         if $USE_RELEASE_FILE ; then
626             release_schema="release-schema.yaml"
627             echo "INFO: Fetching schema $release_schema"
628             wget -q https://raw.githubusercontent.com/lfit/releng-global-jjb/master/schema/$release_schema
629             verify_schema
630         fi
631         set_variables_maven
632         verify_version
633         verify_version_match_release
634         maven_release_file
635         ;;
636
637     packagecloud)
638         if $USE_RELEASE_FILE ; then
639             release_schema="release-packagecloud-schema.yaml"
640             packagecloud_account=$(cat "$ACCOUNT_NAME_FILE")
641             echo "INFO: Fetching schema $release_schema"
642             wget -q https://raw.githubusercontent.com/lfit/releng-global-jjb/master/schema/${release_schema}
643             verify_schema
644         fi
645         set_variables_packagecloud
646         verify_packagecloud_match_release
647         for name in $(yq -r '.packages[].name' $release_file); do
648             package=$name
649             packagecloud_verify "$package" "$packagecloud_account"
650             if [[ "$JOB_NAME" =~ "merge" ]] && ! $DRY_RUN; then
651                 packagecloud_promote "$package" "$packagecloud_account"
652             fi
653         done
654         ;;
655
656     pypi)
657         if $USE_RELEASE_FILE ; then
658             release_schema="release-pypi-schema.yaml"
659             echo "INFO: Fetching schema $release_schema"
660             wget -q https://raw.githubusercontent.com/lfit/releng-global-jjb/master/schema/${release_schema}
661             verify_schema
662         fi
663         set_variables_pypi
664         verify_version
665         verify_pypi_match_release
666         pypi_release_file
667         ;;
668
669     *)
670         echo "ERROR: distribution_type: $DISTRIBUTION_TYPE not supported"
671         exit 1
672         ;;
673 esac
674
675 echo "---> release-job.sh ends"