blob: dddfe0c84f1912f6f20ea7b2de71f84c1e933453 [file] [log] [blame]
Zack Williams27cd3e52018-09-18 16:44:50 -07001#!/usr/bin/env bash
Joey Armstrong28eddda2023-01-10 03:09:34 -05002# -----------------------------------------------------------------------
Joey Armstrongeb84a632024-03-21 13:36:32 -04003# Copyright 2018-2024 Open Networking Foundation Contributors
Zack Williams27cd3e52018-09-18 16:44:50 -07004#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
Joey Armstrongeb84a632024-03-21 13:36:32 -04009# http:#www.apache.org/licenses/LICENSE-2.0
Zack Williams27cd3e52018-09-18 16:44:50 -070010#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
Joey Armstrongeb84a632024-03-21 13:36:32 -040016# -----------------------------------------------------------------------
17# SPDX-FileCopyrightText: 2018-2024 Open Networking Foundation Contributors
18# SPDX-License-Identifier: Apache-2.0
19# -----------------------------------------------------------------------
Joey Armstrongdb43bde2024-04-01 14:54:35 -040020# Intent:
Zack Williams27cd3e52018-09-18 16:44:50 -070021# builds (with make) and uploads release artifacts (binaries, etc.) to github
22# given a tag also create checksums files and release notes from the commit
23# message
Joey Armstrong28eddda2023-01-10 03:09:34 -050024# -----------------------------------------------------------------------
Zack Williams27cd3e52018-09-18 16:44:50 -070025
Joey Armstrong2097d3e2023-03-26 10:32:03 -040026set -euo pipefail
27
28##-------------------##
29##---] GLOBALS [---##
30##-------------------##
31declare -g WORKSPACE
32declare -g GERRIT_PROJECT
Joey Armstrong78cecc52023-04-03 11:39:11 -040033declare -g __githost=github.com
Joey Armstrong43c48422023-04-03 10:17:32 -040034# export DEBUG=1
Joey Armstrong2097d3e2023-03-26 10:32:03 -040035
36## -----------------------------------------------------------------------
37## Uncomment to activate
38## -----------------------------------------------------------------------
Joey Armstronge8560da2023-04-26 15:44:45 -040039# Debug arguments
40# declare -i -g argv_gen_version=1
41# declare -i -g draft_release=1
Joey Armstrong41923cc2023-01-30 14:38:16 -050042
Joey Armstrong2097d3e2023-03-26 10:32:03 -040043declare -a -g ARGV=() # Capture args to minimize globals and arg passing
44[[ $# -gt 0 ]] && ARGV=("$@")
Joey Armstrongd99e3d22023-01-29 12:35:43 -050045
46declare -g scratch # temp workspace for downloads
Joey Armstrongd99e3d22023-01-29 12:35:43 -050047
Joey Armstronge8560da2023-04-26 15:44:45 -040048declare -g SCRIPT_VERSION='1.4' # git changeset needed
Joey Armstrong26707f02023-01-26 12:41:12 -050049
Joey Armstrong7f382ef2023-01-25 12:00:08 -050050##--------------------##
51##---] INCLUDES [---##
Joey Armstrong1962bcf2023-01-27 13:53:18 -050052##--------------------#
Joey Armstrong2097d3e2023-03-26 10:32:03 -040053
54## -----------------------------------------------------------------------
55## Intent: Register an interrupt handler to display a stack trace on error
56## -----------------------------------------------------------------------
57function errexit()
58{
59 local err=$?
60 set +o xtrace
61 local code="${1:-1}"
62
63 local prefix="${BASH_SOURCE[1]}:${BASH_LINENO[0]}"
64 echo -e "\nOFFENDER: ${prefix}"
65 if [ $# -gt 0 ] && [ "$1" == '--stacktrace-quiet' ]; then
66 code=1
67 else
68 echo "ERROR: '${BASH_COMMAND}' exited with status $err"
69 fi
70
71 # Print out the stack trace described by $function_stack
72 if [ ${#FUNCNAME[@]} -gt 2 ]
73 then
Joey Armstrong43c48422023-04-03 10:17:32 -040074 echo "Call tree:"
75 for ((i=1;i<${#FUNCNAME[@]}-1;i++))
76 do
77 echo " $i: ${BASH_SOURCE[$i+1]}:${BASH_LINENO[$i]} ${FUNCNAME[$i]}(...)"
78 done
Joey Armstrong2097d3e2023-03-26 10:32:03 -040079 fi
80
81 echo "Exiting with status ${code}"
82 echo
83 exit "${code}"
84 # return
85}
86
87# trap ERR to provide an error handler whenever a command exits nonzero
88# this is a more verbose version of set -o errexit
89trap errexit ERR
90
91# setting errtrace allows our ERR trap handler to be propagated to functions,
92# expansions and subshells
93set -o errtrace
Joey Armstrong7f382ef2023-01-25 12:00:08 -050094
95## -----------------------------------------------------------------------
Joey Armstrongd99e3d22023-01-29 12:35:43 -050096## Intent: Cleanup scratch area on exit
97## -----------------------------------------------------------------------
98function sigtrap()
99{
100 ## Prevent mishaps
101 local is_read_only
102 is_read_only="$(declare -p scratch)"
103 if [[ $is_read_only != *"declare -r scratch="* ]]; then
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400104 echo "ERROR: variable scratch is not read-only, cleanup skipped"
105 exit 1
Joey Armstrongd99e3d22023-01-29 12:35:43 -0500106 fi
107
108 if [ -d "$scratch" ]; then
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400109 /bin/rm -fr "$scratch"
Joey Armstrongd99e3d22023-01-29 12:35:43 -0500110 fi
111
Joey Armstrong01e4edb2023-08-18 12:50:32 -0400112 do_logout 'shellcheck-SC2119'
Joey Armstrongd99e3d22023-01-29 12:35:43 -0500113 return
114}
115trap sigtrap EXIT
116
117## -----------------------------------------------------------------------
Joey Armstronge8560da2023-04-26 15:44:45 -0400118## Intent: Return a random release version string.
119## -----------------------------------------------------------------------
120## Note: Do not use this function in production. get_version() is
121## intended for local use or debugging $0 from within a jenkins
122## job.
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400123## -----------------------------------------------------------------------
124function get_version()
125{
Joey Armstrong1cc90292024-04-02 09:27:33 -0400126 local -n ref=$1; shift
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400127
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400128 declare -a rev=()
129 rev+=("$(( RANDOM % 10 + 1 ))")
130 rev+=("$(( RANDOM % 256 + 1 ))")
Joey Armstrongeef8c2c2023-03-27 17:27:43 -0400131 rev+=("$(( RANDOM % 10000 + 1 ))")
Joey Armstrongfc20ed52023-04-03 19:37:58 -0400132 local ver="v${rev[0]}.${rev[1]}.${rev[2]}"
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400133
Joey Armstrong43c48422023-04-03 10:17:32 -0400134 func_echo "VERSION: $ver"
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400135 ref="$ver"
136 return
137}
138
139## -----------------------------------------------------------------------
140## Intent: Provide defaults for environment variables
141## -----------------------------------------------------------------------
142function initEnvVars()
143{
144 # when not running under Jenkins, use current dir as workspace and a blank
145 # project name
146 declare -g WORKSPACE=${WORKSPACE:-.}
147 declare -g GERRIT_PROJECT=${GERRIT_PROJECT:-}
Joey Armstrong76026b72023-03-29 12:19:17 -0400148
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400149 # Github organization (or user) this project is published on. Project name should
150 # be the same on both Gerrit and GitHub
Joey Armstrong76026b72023-03-29 12:19:17 -0400151 declare -g GITHUB_ORGANIZATION=${GITHUB_ORGANIZATION:-}
152
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400153 # glob pattern relative to project dir matching release artifacts
154 # ARTIFACT_GLOB=${ARTIFACT_GLOB:-"release/*"} # stat -- release/* not found, literal string (?)
155 declare -g ARTIFACT_GLOB=${ARTIFACT_GLOB:-"release/."}
Joey Armstrong76026b72023-03-29 12:19:17 -0400156
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400157 # Use "release" as the default makefile target, can be a space separated list
158 declare -g RELEASE_TARGETS=${RELEASE_TARGETS:-release}
Joey Armstrong76026b72023-03-29 12:19:17 -0400159
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400160 # Set and handle GOPATH and PATH
161 export GOPATH=${GOPATH:-$WORKSPACE/go}
162 export PATH=$PATH:/usr/lib/go-1.12/bin:/usr/local/go/bin:$GOPATH/bin
163 return
164}
165
166## -----------------------------------------------------------------------
Joey Armstrongd99e3d22023-01-29 12:35:43 -0500167## Intent: Create a scratch area for downloads and transient tools
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400168## temp directory will be automatically removed upon exit.
Joey Armstrongd99e3d22023-01-29 12:35:43 -0500169## -----------------------------------------------------------------------
170function init()
171{
Joey Armstrongd99e3d22023-01-29 12:35:43 -0500172 local pkgbase="${0##*/}" # basename
173 local pkgname="${pkgbase%.*}"
174
Joey Armstrongad7b1e02023-03-27 11:55:48 -0400175 # initEnvVars # moved to full_banner()
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400176
177 ## Create a temp directory for auto-cleanup
178 declare -g scratch
Joey Armstrongd99e3d22023-01-29 12:35:43 -0500179 scratch="$(mktemp -d -t "${pkgname}.XXXXXXXXXX")"
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400180 readonly scratch
181 declare -p scratch
182
Joey Armstrong43c48422023-04-03 10:17:32 -0400183 ## prime the stream: cache answers
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400184 local work
185 get_release_dir work
186 declare -p work
Joey Armstrong43c48422023-04-03 10:17:32 -0400187
Joey Armstronge8560da2023-04-26 15:44:45 -0400188 local git_version
Joey Armstrong01e4edb2023-08-18 12:50:32 -0400189 getGitVersion git_version
190 func_echo "$(declare -p git_version)"
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400191 return
192}
193
194## -----------------------------------------------------------------------
195## Intent: Verbose output for logging
196## -----------------------------------------------------------------------
197function banner()
198{
199 local iam="${0##*/}"
200 cat <<EOB
201
202** -----------------------------------------------------------------------
203** ${iam}::${FUNCNAME[1]}: $*
204** -----------------------------------------------------------------------
205EOB
Joey Armstrongd99e3d22023-01-29 12:35:43 -0500206}
207
208## -----------------------------------------------------------------------
Joey Armstrong7f382ef2023-01-25 12:00:08 -0500209## Intent: Output a log banner to identify the running script/version.
210## -----------------------------------------------------------------------
211## TODO:
212## o SCRIPT_VERSION => git changeset for repo:ci-managment
213## o echo "library version: ${env."library.libName.version"}"
214# -----------------------------------------------------------------------
215# 14:18:38 > git fetch --no-tags --progress -- https://gerrit.opencord.org/ci-management.git +refs/heads/*:refs/remotes/origin/* # timeout=10
216# 14:18:39 Checking out Revision 50f6e0b97f449b32d32ec0e02d59642000351847 (master)
217# -----------------------------------------------------------------------
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400218function full_banner()
Joey Armstrong7f382ef2023-01-25 12:00:08 -0500219{
Joey Armstrongad7b1e02023-03-27 11:55:48 -0400220 local iam="${0##*/}"
221
222 initEnvVars # set defaults
Joey Armstrong7f382ef2023-01-25 12:00:08 -0500223
224cat <<EOH
225
226** -----------------------------------------------------------------------
227** IAM: ${iam} :: ${FUNCNAME[0]}
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400228** ARGV: ${ARGV[@]}
Joey Armstrong7f382ef2023-01-25 12:00:08 -0500229** PWD: $(/bin/pwd)
230** NOW: $(date '+%Y/%m/%d %H:%M:%S')
231** VER: ${SCRIPT_VERSION:-'unknown'}
232** -----------------------------------------------------------------------
Joey Armstrongad7b1e02023-03-27 11:55:48 -0400233** GERRIT_PROJECT: $(declare -p GERRIT_PROJECT)
234** GITHUB_ORGANIZATION: $(declare -p GITHUB_ORGANIZATION)
235** RELEASE_TARGETS: $(declare -p RELEASE_TARGETS)
236** GOPATH: $(declare -p GOPATH)
237** -----------------------------------------------------------------------
238** PATH += /usr/lib/go-1.12/bin:/usr/local/go/bin:GOPATH/bin
239** -----------------------------------------------------------------------
Joey Armstrong7f382ef2023-01-25 12:00:08 -0500240EOH
241
242 return
243}
244
Joey Armstrongaf577ab2022-12-15 14:43:33 -0500245## -----------------------------------------------------------------------
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400246## Intent: Display a message with 'iam' identifier for logging
Joey Armstrong50f6e0b2023-01-24 14:14:08 -0500247## -----------------------------------------------------------------------
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400248function func_echo()
Joey Armstrong1962bcf2023-01-27 13:53:18 -0500249{
250 local iam="${0##*/}"
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400251 echo "** ${iam} :: ${FUNCNAME[1]}: $*"
Joey Armstrong1962bcf2023-01-27 13:53:18 -0500252 return
253}
254
255## -----------------------------------------------------------------------
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400256## Intent: Display an error message then exit with status.
257## -----------------------------------------------------------------------
258function error()
259{
260 local iam="${0##*/}"
261 echo "ERROR ${iam} :: ${FUNCNAME[1]}: $*"
262 exit 1
263}
264
265## -----------------------------------------------------------------------
266## Intent: Verify sandbox/build is versioned for release.
267## -----------------------------------------------------------------------
268function getGitVersion()
269{
Joey Armstrong1cc90292024-04-02 09:27:33 -0400270 local -n varname=$1; shift
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400271
Joey Armstrong43c48422023-04-03 10:17:32 -0400272 local __ver # use prefix('__') to protect callers variable name
273 if [[ -v cached_getGitVersion ]]; then
274 __ver="$cached_getGitVersion"
275 varname="$__ver"
276 return
Joey Armstrong39fac652023-03-27 18:50:43 -0400277
Joey Armstrong43c48422023-04-03 10:17:32 -0400278 elif [[ -v argv_gen_version ]]; then
279 get_version __ver
280
281 elif [[ -v WORKSPACE ]] && [[ -v GITHUB_TOKEN ]]; then # i_am_jenkins
Joey Armstrongf9a0a882023-04-17 11:53:57 -0400282 local path="$GERRIT_PROJECT"
283 pushd "$path" || error "pushd GERRIT_PROJECT= failed $(declare -p path)"
Joey Armstrong43c48422023-04-03 10:17:32 -0400284 __ver="$(git tag -l --points-at HEAD)"
Joey Armstrongf9a0a882023-04-17 11:53:57 -0400285 popd || error "popd GERRIT_PROJECT= failed"
Joey Armstrong43c48422023-04-03 10:17:32 -0400286
287 elif [[ -v argv_version_file ]]; then # local debug
288 [[ ! -f VERSION ]] && error "./VERSION file not found"
289 readarray -t tmp < <(sed -e 's/[[:blank:]]//g' 'VERSION')
290 __ver="v${tmp[0]}"
291
292 else
Joey Armstrongf9a0a882023-04-17 11:53:57 -0400293 cd ..
294 local path="$GERRIT_PROJECT"
295 pushd "$path" || error "pushd GERRIT_PROJECT= failed $(declare -p path)"
Joey Armstrong43c48422023-04-03 10:17:32 -0400296 __ver="$(git tag -l --points-at HEAD)"
Joey Armstrongf9a0a882023-04-17 11:53:57 -0400297 popd || error "popd GERRIT_PROJECT= failed"
Joey Armstrong43c48422023-04-03 10:17:32 -0400298 fi
Joey Armstrong76026b72023-03-29 12:19:17 -0400299
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400300 # ------------------------------------------------------
301 # match bare versions or v-prefixed golang style version
302 # Critical failure for new/yet-to-be-released repo ?
303 # ------------------------------------------------------
Joey Armstrong43c48422023-04-03 10:17:32 -0400304 if [[ "$__ver" =~ ^v?([0-9]+)\.([0-9]+)\.([0-9]+)$ ]]; then
Joey Armstrongfc20ed52023-04-03 19:37:58 -0400305 echo "git has a SemVer released version tag: '$__ver'"
Joey Armstrong43c48422023-04-03 10:17:32 -0400306 echo "Building artifacts for GitHub release."
307
308 elif [[ "$__ver" =~ ^v?([0-9]+)\.([0-9]+)\.([0-9]+)-dev([0-9]+)$ ]]; then
Joey Armstronge8560da2023-04-26 15:44:45 -0400309 # v1.2.3-dev (*-dev*) is an implicit draft release.
Joey Armstrong43c48422023-04-03 10:17:32 -0400310 declare -i -g draft_release=1
311 echo "Detected --draft SemVer release version tag [$__ver]"
312 echo "Building artifacts for GitHub release."
313
Joey Armstrong4f87de82023-08-25 12:42:39 -0400314 # Should also accept: X.Y.Z-{alpha,beta,...}
315
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400316 else
Joey Armstrong4f87de82023-08-25 12:42:39 -0400317 echo "Version string contains: [${__ver}]"
Joey Armstrong43c48422023-04-03 10:17:32 -0400318 error "No SemVer released version tag found, exiting..."
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400319 fi
320
Joey Armstrong43c48422023-04-03 10:17:32 -0400321 ## Cache value for subsequent calls.
322 ## readonly is a guarantee assignment happens once.
323 declare -g cached_getGitVersion="$__ver"
324 readonly cached_getGitVersion;
325
326 varname="$__ver"
327 func_echo "Version is [$__ver] from $(/bin/pwd)"
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400328 return
329}
330
331## -----------------------------------------------------------------------
332## Intent:
333## Note: Release description is sanitized version of the log message
334## -----------------------------------------------------------------------
335function getReleaseDescription()
336{
Joey Armstrong1cc90292024-04-02 09:27:33 -0400337 local -n varname=$1; shift
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400338
339 local msg
340 msg="$(git log -1 --pretty=%B)"
341
342 local val
343 val="$(tr -dc "[:alnum:]\n\r\.\[\]\:\-\\\/\`\' " <<< "$msg")"
344
345 [[ ${#val} -eq 0 ]] && error "Release Description is empty ($msg)"
346 varname="$val"
347 return
348}
349
350## -----------------------------------------------------------------------
351## Intent: Retrieve value of the release temp directory.
352## -----------------------------------------------------------------------
353## Note: Limit use of globals so logic can be isolated in function calls.
354## -----------------------------------------------------------------------
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400355function get_release_dir()
356{
Joey Armstrongdb43bde2024-04-01 14:54:35 -0400357 local -n varname=$1; shift
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400358
359 # Temporary staging directory to copy artifacts to
360 varname="$scratch/release"
361 mkdir -p "$varname"
362 return
363}
364
365## -----------------------------------------------------------------------
366## Intent: Retrieve github server hostname
367## -----------------------------------------------------------------------
368function get_gh_hostname()
369{
Joey Armstrongdb43bde2024-04-01 14:54:35 -0400370 local -n varname=$1; shift
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400371 varname+=('--hostname' "${__githost}")
372 return
373}
374
375## -----------------------------------------------------------------------
376## Intent: Retrieve repository organizaiton name
377## -----------------------------------------------------------------------
378function get_gh_repo_org()
379{
Joey Armstrongdb43bde2024-04-01 14:54:35 -0400380 local -n ref=$1; shift
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400381 declare -g __repo_org
Joey Armstrong76026b72023-03-29 12:19:17 -0400382
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400383 local org
384 if [[ -v __repo_org ]]; then
Joey Armstrong43c48422023-04-03 10:17:32 -0400385 org="$__repo_org"
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400386 elif [[ ! -v GITHUB_ORGANIZATION ]]; then
Joey Armstrong43c48422023-04-03 10:17:32 -0400387 error "--repo-org or GITHUB_ORGANIZATION= are required"
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400388 else
Joey Armstrong43c48422023-04-03 10:17:32 -0400389 org="${GITHUB_ORGANIZATION}"
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400390 fi
391
Joey Armstrong01e4edb2023-08-18 12:50:32 -0400392 ref="$org"
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400393 return
394}
395
396## -----------------------------------------------------------------------
397## Intent: Retrieve repository organizaiton name
398## -----------------------------------------------------------------------
399function get_gh_repo_name()
400{
Joey Armstrongdb43bde2024-04-01 14:54:35 -0400401 local -n ref=$1; shift
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400402 declare -g __repo_name
Joey Armstrong76026b72023-03-29 12:19:17 -0400403
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400404 local name
405 if [[ -v __repo_name ]]; then
Joey Armstrong43c48422023-04-03 10:17:32 -0400406 name="$__repo_name"
Joey Armstrong39fac652023-03-27 18:50:43 -0400407 elif [[ ! -v GERRIT_PROJECT ]]; then
Joey Armstrong43c48422023-04-03 10:17:32 -0400408 error "--repo-name or GERRIT_PROJECT= are required"
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400409 else
Joey Armstrong43c48422023-04-03 10:17:32 -0400410 name="${GERRIT_PROJECT}"
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400411 fi
412
Joey Armstrong01e4edb2023-08-18 12:50:32 -0400413 ref="$name"
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400414 return
415}
416
417## -----------------------------------------------------------------------
418## Intent: Return path for the gh release query
419## -----------------------------------------------------------------------
420function get_gh_releases()
421{
Joey Armstrong1cc90292024-04-02 09:27:33 -0400422 local -n ref=$1; shift
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400423
424 local repo_org
425 get_gh_repo_org repo_org
426
427 local repo_name
428 get_gh_repo_name repo_name
429
430 ref="repos/${repo_org}/${repo_name}/releases"
431 func_echo "ref=$ref"
432 return
433}
434
435## -----------------------------------------------------------------------
436## Intent: Retrieve repository path argument
437## -----------------------------------------------------------------------
438function get_argv_repo()
439{
Joey Armstrongdb43bde2024-04-01 14:54:35 -0400440 local -n ref=$1; shift
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400441
442 local repo_org
443 get_gh_repo_org repo_org
Joey Armstrong76026b72023-03-29 12:19:17 -0400444
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400445 local repo_name
Joey Armstrong76026b72023-03-29 12:19:17 -0400446 get_gh_repo_name repo_name
447
Joey Armstrong01e4edb2023-08-18 12:50:32 -0400448 ref="${repo_org}/${repo_name}"
449 # func_echo "ref=$(declare -p ref)"
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400450 return
451}
452
453## -----------------------------------------------------------------------
454## Intent: Retrieve release name string "project - version"
455## -----------------------------------------------------------------------
456function get_argv_name()
457{
Joey Armstrongdb43bde2024-04-01 14:54:35 -0400458 local -n ref=$1; shift
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400459
460 local repo_name
461 get_gh_repo_name repo_name
Joey Armstrong43c48422023-04-03 10:17:32 -0400462
463 local repo_ver
464 getGitVersion repo_ver
465
Joey Armstrong01e4edb2023-08-18 12:50:32 -0400466 # ref="${repo_name} - $GIT_VERSION"
467 ref="${repo_name} - ${repo_ver}"
468 func_echo "ref=$(declare -p ref)"
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400469 return
470}
471
472## -----------------------------------------------------------------------
473## Intent: Retrieve tag version
474## -----------------------------------------------------------------------
475function get_argv_tag()
476{
Joey Armstrongdb43bde2024-04-01 14:54:35 -0400477 local -n ref=$1; shift
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400478
479 # cached_argv_tag='v3.41.3204'
480 if [[ ! -v cached_argv_tag ]]; then
Joey Armstrong43c48422023-04-03 10:17:32 -0400481 declare -g cached_argv_tag
482 if [[ -v GIT_VERSION ]]; then # hello jenkins
483 cached_argv_tag="$GIT_VERSION"
484 fi
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400485 fi
486
487 [[ ${#cached_argv_tag} -eq 0 ]] && error "Unable to determine GIT_VERSION="
Joey Armstrong01e4edb2023-08-18 12:50:32 -0400488 ref="$cached_argv_tag"
489 func_echo "ref=$(declare -p ref)"
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400490 return
491}
492
493## -----------------------------------------------------------------------
494## Intent:
495## -----------------------------------------------------------------------
496# To support golang projects that require GOPATH to be set and code checked out there
497# If $DEST_GOPATH is not an empty string:
498# - create GOPATH within WORKSPACE, and destination directory within
499# - set PATH to include $GOPATH/bin and the system go binaries
500# - move project from $WORKSPACE/$GERRIT_PROJECT to new location in $GOPATH
501# - start release process within that directory
502## -----------------------------------------------------------------------
503function get_release_path()
504{
Joey Armstrongdb43bde2024-04-01 14:54:35 -0400505 local -n ref=$1; shift
Joey Armstrong01e4edb2023-08-18 12:50:32 -0400506 local varpath="$ref"
Joey Armstrongdaa1f0a2024-04-03 18:07:59 -0400507
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400508 DEST_GOPATH=${DEST_GOPATH:-}
509 if [ -n "$DEST_GOPATH" ]; then
Joey Armstrong43c48422023-04-03 10:17:32 -0400510 mkdir -p "$GOPATH/src/$DEST_GOPATH"
Joey Armstronge8560da2023-04-26 15:44:45 -0400511 varpath="$GOPATH/src/$DEST_GOPATH/$GERRIT_PROJECT"
512 mv "$WORKSPACE/$GERRIT_PROJECT" "$varpath"
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400513 else
Joey Armstronge8560da2023-04-26 15:44:45 -0400514 varpath="$WORKSPACE/$GERRIT_PROJECT"
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400515 fi
516
Joey Armstrong43c48422023-04-03 10:17:32 -0400517 ## Verify pwd is OK
518 for path in \
Joey Armstronge8560da2023-04-26 15:44:45 -0400519 "${varpath}/Makefile"\
520 "${varpath}/makefile"\
Joey Armstrong43c48422023-04-03 10:17:32 -0400521 "__ERROR__"\
522 ; do
523 case "$path" in
Joey Armstronge8560da2023-04-26 15:44:45 -0400524 __ERROR__) error "Makefile not found at ${varpath} !" ;;
Joey Armstrong43c48422023-04-03 10:17:32 -0400525 *) [[ -f "$path" ]] && break ;;
526 esac
527 done
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400528
Mahir Gunyel2c9e8502024-03-29 13:05:38 -0700529 ref="$varpath"
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400530}
531
532## -----------------------------------------------------------------------
533## Intent: Display future enhancements
534## -----------------------------------------------------------------------
535function todo()
536{
537 local iam="${0##*/}"
538
539cat <<EOT
540
541** -----------------------------------------------------------------------
542** IAM: ${iam} :: ${FUNCNAME[0]}
543** -----------------------------------------------------------------------
544 o get_release_path()
545 - refactor redundant paths into local vars.
546 - see comments, do we have a one-off failure condition ?
Joey Armstrongad7b1e02023-03-27 11:55:48 -0400547 o PATH += golang appended 3 times, release needs a single, reliable answer.
548 o do_login, do_logout and api calls do not use the my_gh wrapper:
549 - Add a lookup function to cache and retrieve path to downloaded gh command.
Joey Armstrong76026b72023-03-29 12:19:17 -0400550
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400551EOT
552
553 return
554}
555
556## -----------------------------------------------------------------------
Joey Armstrong76026b72023-03-29 12:19:17 -0400557## Intent: Verify a directory contains content for release.
558## -----------------------------------------------------------------------
559## Given:
560## scalar Path to release/ directory
561## ref Results returned through this indirect var.
562## -----------------------------------------------------------------------
563## Usage:
564## declare -a artifacts=()
565## get_artifacts '/foo/bar/tans' artifacts
566## declare -p artifacts
567## -----------------------------------------------------------------------
568function get_artifacts()
569{
570 local dir="$1" ; shift
Joey Armstrongdb43bde2024-04-01 14:54:35 -0400571 local -n refA=$1 ; shift
Joey Armstrong76026b72023-03-29 12:19:17 -0400572
Joey Armstrong55fe80e2023-04-05 18:32:14 -0400573 # Glob available files, exclude checksums
574 readarray -t __artifacts < <(find "$dir" -mindepth 1 ! -type d \
Joey Armstrongf9a0a882023-04-17 11:53:57 -0400575 | grep -iv -e 'sum256' -e 'checksum')
576 # func_echo "$(declare -p __artifacts)"
Joey Armstrong76026b72023-03-29 12:19:17 -0400577
578 # -----------------------------------------------------------------------
579 # Verify count>0 to inhibit source-only release
580 # Problem children:
581 # o build or make release failures.
582 # o docker container filesystem mount problem (~volume)
583 # -----------------------------------------------------------------------
584 [[ ${#__artifacts[@]} -eq 0 ]] \
Joey Armstrong43c48422023-04-03 10:17:32 -0400585 && error "Artifact dir is empty: $(declare -p dir)"
Joey Armstrong76026b72023-03-29 12:19:17 -0400586
Joey Armstrong01e4edb2023-08-18 12:50:32 -0400587 refA=("${__artifacts[@]}")
Joey Armstrong76026b72023-03-29 12:19:17 -0400588 return
589}
590
591## -----------------------------------------------------------------------
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400592## Intent: Copy files from the build directory into the release staging
593## directory for publishing to github releases/ endpoint.
Joey Armstrong26707f02023-01-26 12:41:12 -0500594## -----------------------------------------------------------------------
595function copyToRelease()
596{
Joey Armstrong76026b72023-03-29 12:19:17 -0400597 banner ''
Joey Armstrong26707f02023-01-26 12:41:12 -0500598
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400599 local artifact_glob="${ARTIFACT_GLOB%/*}"
600 func_echo "$(declare -p artifact_glob)"
601
602 local work
603 get_release_dir work
Joey Armstrong76026b72023-03-29 12:19:17 -0400604 func_echo "Artifact dir: $(declare -p work)"
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400605
Joey Armstrong76026b72023-03-29 12:19:17 -0400606 ## Verify release content is available
607 declare -a artifacts=()
Joey Armstrong43c48422023-04-03 10:17:32 -0400608 # get_artifacts "$work" artifacts
609 get_artifacts "$artifact_glob" artifacts
610 func_echo "Artifacts in copy_from: $(declare -p artifacts)"
Joey Armstrong472bfba2023-03-27 18:12:28 -0400611
Joey Armstrong26707f02023-01-26 12:41:12 -0500612 # Copy artifacts into the release temp dir
613 # shellcheck disable=SC2086
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400614 echo "rsync -rv --checksum \"$artifact_glob/.\" \"$work/.\""
615 rsync -rv --checksum "$artifact_glob/." "$work/."
Joey Armstrong1962bcf2023-01-27 13:53:18 -0500616
Joey Armstrong43c48422023-04-03 10:17:32 -0400617 get_artifacts "$work" artifacts
618 func_echo "Artifacts in copy_to: $(declare -p artifacts)"
619
Joey Armstrong26707f02023-01-26 12:41:12 -0500620 return
621}
622
623## -----------------------------------------------------------------------
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400624## https://docs.github.com/en/rest/releases?apiVersion=2022-11-28
625 # https://cli.github.com/manual/gh_release_create
626 # --target <branch> or commit SHA
627 # --title
628 # --generate-notes
629 # --release-notes (notes file)
630 # --release
631 # release create dist/*.tgz
632 # --discussion-category "General"
Joey Armstrongf085d872023-01-28 17:52:29 -0500633## -----------------------------------------------------------------------
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400634# https://cli.github.com/manual/gh_release_create
635## -----------------------------------------------------------------------
636function gh_release_create()
Joey Armstrong38bfeea2023-02-06 18:01:29 -0500637{
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400638 banner ''
Joey Armstrong38bfeea2023-02-06 18:01:29 -0500639
Joey Armstrong43c48422023-04-03 10:17:32 -0400640 local version
641 getGitVersion version
Joey Armstrong38bfeea2023-02-06 18:01:29 -0500642
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400643 local work
644 get_release_dir work
645
Joey Armstrong43c48422023-04-03 10:17:32 -0400646 declare -a args=()
647 args+=('--host-repo')
648 args+=('--title')
649 if [[ -v draft_release ]]; then
650 args+=('--draft')
651 else
652 args+=('--discussion-category' 'Announcements')
653 fi
654
Joey Armstrong55fe80e2023-04-05 18:32:14 -0400655 if [[ -v release_notes ]]; then
Joey Armstrongf9a0a882023-04-17 11:53:57 -0400656 args+=('--notes-file' "$release_notes")
Joey Armstrong55fe80e2023-04-05 18:32:14 -0400657 fi
Joey Armstrong43c48422023-04-03 10:17:32 -0400658
Joey Armstrong78cecc52023-04-03 11:39:11 -0400659 pushd "$work/.." >/dev/null
Joey Armstrongf9a0a882023-04-17 11:53:57 -0400660 # func_echo "WORK=$work"
Joey Armstrong78cecc52023-04-03 11:39:11 -0400661 readarray -t payload < <(find 'release' -maxdepth 4 ! -type d -print)
Joey Armstrong76026b72023-03-29 12:19:17 -0400662
Joey Armstronge8560da2023-04-26 15:44:45 -0400663 func_echo "$gh_cmd release create ${version} ${args[*]} ${payload[*]}"
Joey Armstrong43c48422023-04-03 10:17:32 -0400664
665 if [[ -v dry_run ]]; then
666 echo "[SKIP] dry run"
667 else
Joey Armstronge8560da2023-04-26 15:44:45 -0400668 func_echo "my_gh release create '$version' ${args[*]} ${payload[*]}"
Joey Armstrong4dbe7002023-04-04 12:47:38 -0400669 my_gh 'release' 'create' "$version" "${args[@]}" "${payload[@]}"
Joey Armstrong43c48422023-04-03 10:17:32 -0400670 fi
Joey Armstrong76026b72023-03-29 12:19:17 -0400671 popd >/dev/null
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400672
Joey Armstrong38bfeea2023-02-06 18:01:29 -0500673 return
674}
675
676## -----------------------------------------------------------------------
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400677## Intent: Authenticate credentials for a github gh session
Joey Armstrong38bfeea2023-02-06 18:01:29 -0500678## -----------------------------------------------------------------------
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400679## NOTE: my_gh currently unused due to --with-token < "$pac"
680## -----------------------------------------------------------------------
681function do_login()
Joey Armstrongf085d872023-01-28 17:52:29 -0500682{
Joey Armstrong01e4edb2023-08-18 12:50:32 -0400683 # shellcheck disable=SC2120
684 # shellcheck disable=SC2034
685 local unused="$1"; shift
686
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400687 declare -g pac
Joey Armstrong485081f2023-03-27 13:34:08 -0400688 declare -a login_args=()
689 [[ $# -gt 0 ]] && login_args+=("$@")
Joey Armstrongf085d872023-01-28 17:52:29 -0500690
Joey Armstrong485081f2023-03-27 13:34:08 -0400691 # https://github.com/cli/cli/issues/2922#issuecomment-775027762
Joey Armstrong75a0d932023-03-28 08:59:54 -0400692 # (sigh) why not quietly return VS forcing a special logic path
Joey Armstronge6e18eb2023-03-27 14:19:21 -0400693 # [[ -v WORKSPACE ]] && [[ -v GITHUB_TOKEN ]] && return
694
695# 12:58:36 ** -----------------------------------------------------------------------
696# 12:58:36 ** jenkins582353203049151829.sh::do_login: --hostname github.com
697# 12:58:36 ** --------------------------------------------------------------------# ---
698# 12:58:36 ** jenkins582353203049151829.sh :: do_login: Detected ENV{GITHUB_TOKEN}=
699# 12:58:36 The value of the GITHUB_TOKEN environment variable is being used for authentication.
700# 12:58:36 To have GitHub CLI store credentials instead, first clear the value from the environment.
Joey Armstrong43c48422023-04-03 10:17:32 -0400701# -----------------------------------------------------------------------
Joey Armstrong76026b72023-03-29 12:19:17 -0400702
Joey Armstrong485081f2023-03-27 13:34:08 -0400703 get_gh_hostname login_args
Joey Armstrongf085d872023-01-28 17:52:29 -0500704
Joey Armstrong485081f2023-03-27 13:34:08 -0400705 banner "${login_args[@]}"
Joey Armstrong78cecc52023-04-03 11:39:11 -0400706 func_echo "$(declare -p WORKSPACE)"
Joey Armstrongf085d872023-01-28 17:52:29 -0500707
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400708 ## Read from disk is safer than export GITHUB_TOKEN=
709 if [[ -v pac ]] && [[ ${#pac} -gt 0 ]]; then # interactive/debugging
Joey Armstrong43c48422023-04-03 10:17:32 -0400710 [ ! -f "$pac" ] && error "PAC token file $pac does not exist"
Joey Armstronge8560da2023-04-26 15:44:45 -0400711 func_echo "$gh_cmd auth login ${login_args[*]} --with-token < $pac"
Joey Armstrong485081f2023-03-27 13:34:08 -0400712 "$gh_cmd" auth login "${login_args[@]}" --with-token < "$pac"
Joey Armstrongf085d872023-01-28 17:52:29 -0500713
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400714 elif [[ ! -v GITHUB_TOKEN ]]; then
715 error "--token [t] or GITHUB_TOKEN= are required"
Joey Armstrong41923cc2023-01-30 14:38:16 -0500716
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400717 else # jenkins
Joey Armstronge8560da2023-04-26 15:44:45 -0400718 func_echo "$gh_cmd auth login ${login_args[*]} (ie: jenkins)"
Joey Armstrong733ea9f2023-04-03 21:19:46 -0400719
Joey Armstrongf9a0a882023-04-17 11:53:57 -0400720 # https://github.com/cli/cli/issues/2922#issuecomment-775027762
721 # When using GITHUB_TOKEN, there is no need to even run gh auth login
Joey Armstrong733ea9f2023-04-03 21:19:46 -0400722 # "$gh_cmd" auth login "${login_args[@]}"
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400723 fi
Joey Armstrongf085d872023-01-28 17:52:29 -0500724
Joey Armstrong43c48422023-04-03 10:17:32 -0400725 declare -i -g active_login=1 # signal logout needed
Joey Armstrongf085d872023-01-28 17:52:29 -0500726
Joey Armstrongf085d872023-01-28 17:52:29 -0500727 return
728}
729
730## -----------------------------------------------------------------------
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400731## Intent: Destroy credentials/gh session authenticated by do_login
732## -----------------------------------------------------------------------
733## NOTE: my_gh currently unused due to "<<< 'y'"
734## -----------------------------------------------------------------------
735function do_logout()
736{
737 declare -i -g active_login
738 [[ ! -v active_login ]] && return
739
Joey Armstrong78cecc52023-04-03 11:39:11 -0400740 declare -a logout_args=()
741 [[ $# -gt 0 ]] && logout_args+=("$@")
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400742
Joey Armstrong78cecc52023-04-03 11:39:11 -0400743 get_gh_hostname logout_args
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400744
Joey Armstrong78cecc52023-04-03 11:39:11 -0400745 banner "${logout_args[@]}"
Joey Armstronge8560da2023-04-26 15:44:45 -0400746 func_echo "$gh_cmd auth logout ${logout_args[*]} <<< 'Y'"
Joey Armstrong78cecc52023-04-03 11:39:11 -0400747 "$gh_cmd" auth logout "${logout_args[@]}" <<< 'Y'
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400748
749 unset active_login
750 return
751}
752
753## -----------------------------------------------------------------------
754## Intent: Query for repository version strings
755## -----------------------------------------------------------------------
756function get_releases()
757{
Joey Armstrongdb43bde2024-04-01 14:54:35 -0400758 # shellcheck disable=SC2178
Joey Armstrong1cc90292024-04-02 09:27:33 -0400759 local -n refA=$1; shift
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400760
761 banner ""
762 pushd "$scratch" >/dev/null
Joey Armstrong76026b72023-03-29 12:19:17 -0400763
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400764 # gh api repos/{owner}/{repo}/releases
765 local releases_uri
766 get_gh_releases releases_uri
Joey Armstrongf9a0a882023-04-17 11:53:57 -0400767 # declare -p releases_uri
Joey Armstrong76026b72023-03-29 12:19:17 -0400768
Joey Armstrong01e4edb2023-08-18 12:50:32 -0400769 refA=()
Joey Armstronge8560da2023-04-26 15:44:45 -0400770 "$gh_cmd" api "$releases_uri" | jq . > 'release.raw'
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400771 readarray -t __tmp < <(jq '.[] | "\(.tag_name)"' 'release.raw')
772
773 local release
774 for release in "${__tmp[@]}";
775 do
Joey Armstrong43c48422023-04-03 10:17:32 -0400776 release="${release//\"/}"
Joey Armstrong01e4edb2023-08-18 12:50:32 -0400777 refA+=("$release")
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400778 done
779
780 popd >/dev/null
781 return
782}
783
784## -----------------------------------------------------------------------
785## Intent: Display repository query strings.
786## Indirect: verify authentication and API
787## -----------------------------------------------------------------------
788function showReleases()
789{
Joey Armstrong43c48422023-04-03 10:17:32 -0400790 declare -a raw=()
791 get_releases raw
792
793 ## Sort for display, we may need to prune volume later on
Joey Armstronge8560da2023-04-26 15:44:45 -0400794 readarray -t releases < <(sort -nr <<<"${raw[*]}")
795 # IFS=$'\n' releases=($(sort -nr <<<"${raw[*]}"))
796 # unset IFS
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400797
798 local release
799 for release in "${releases[@]}";
800 do
Joey Armstrong43c48422023-04-03 10:17:32 -0400801 func_echo "$release"
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400802 done
803 return
804}
805
806## -----------------------------------------------------------------------
807## Intent: Install the gh command line tool locally
Joey Armstrong26707f02023-01-26 12:41:12 -0500808## -----------------------------------------------------------------------
Joey Armstrongd99e3d22023-01-29 12:35:43 -0500809function install_gh_binary()
Joey Armstrong26707f02023-01-26 12:41:12 -0500810{
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400811 banner
Joey Armstrong26707f02023-01-26 12:41:12 -0500812
Joey Armstrongd99e3d22023-01-29 12:35:43 -0500813 pushd "$scratch"
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400814 func_echo "Retrieve latest gh download URLs"
Joey Armstrongf085d872023-01-28 17:52:29 -0500815
Joey Armstrongd99e3d22023-01-29 12:35:43 -0500816 local latest="https://github.com/cli/cli/releases/latest"
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400817 local tarball="gh.tar.tgz"
818
Joey Armstrong76026b72023-03-29 12:19:17 -0400819 readarray -t latest < <(\
820 curl --silent -qI "$latest" \
Joey Armstrong43c48422023-04-03 10:17:32 -0400821 | awk -F '/' '/^location/ {print substr($NF, 1, length($NF)-1)}')
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400822 declare -p latest
823 if [ ${#latest[@]} -ne 1 ]; then
Joey Armstrong43c48422023-04-03 10:17:32 -0400824 error "Unable to determine latest gh package version"
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400825 fi
Joey Armstrong76026b72023-03-29 12:19:17 -0400826
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400827 local VER="${latest[0]}"
828
829 func_echo "Download latest gh binary"
Joey Armstrongd99e3d22023-01-29 12:35:43 -0500830 local url="https://github.com/cli/cli/releases/download/${VER}/gh_${VER#v}_linux_amd64.tar.gz"
Joey Armstrong43c48422023-04-03 10:17:32 -0400831 func_echo "wget --quiet --output-document='$tarball' '$url'"
Joey Armstrongd99e3d22023-01-29 12:35:43 -0500832 wget --quiet --output-document="$tarball" "$url"
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400833
834 func_echo "Unpack tarball"
Joey Armstrongd99e3d22023-01-29 12:35:43 -0500835 tar zxf "$tarball"
836
Joey Armstrong78cecc52023-04-03 11:39:11 -0400837 declare -g gh_cmd
838 gh_cmd="$(find "${scratch}" -name 'gh' -print)"
839 #declare -g gh_cmd='/usr/bin/gh'
Joey Armstrongd99e3d22023-01-29 12:35:43 -0500840 readonly gh_cmd
841
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400842 func_echo "Command: ${gh_cmd}"
843 func_echo "Version: $("$gh_cmd" --version)"
Joey Armstrongd99e3d22023-01-29 12:35:43 -0500844 popd
845
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400846 return
847}
848
849## -----------------------------------------------------------------------
850## Intent: Danger Will Robinson
851## -----------------------------------------------------------------------
852function releaseDelete()
853{
Joey Armstrongdb43bde2024-04-01 14:54:35 -0400854 # shellcheck disable=SC2178
855 local -n refA=$1; shift
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400856 local version="$1"; shift
Joey Armstrong76026b72023-03-29 12:19:17 -0400857
Joey Armstrong01e4edb2023-08-18 12:50:32 -0400858 banner "${refA[@]}"
859 # declare -a refA=()
860 refA+=('--host-repo')
861 refA+=('--yes')
862 # refA+=('--cleanup-tag')
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400863
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400864 echo
865 echo "==========================================================================="
Joey Armstrong01e4edb2023-08-18 12:50:32 -0400866 my_gh 'release' 'delete' "$version" "${refA[@]}"
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400867 echo "==========================================================================="
868 echo
869
870 showReleases
871 return
872}
873
874## -----------------------------------------------------------------------
875## Intent: Copy binaries into temp/release, checksum then publish
876## -----------------------------------------------------------------------
877function release_staging()
878{
879 local release_temp
880 get_release_dir release_temp
881
882 banner ''
883 func_echo "Packaging release files"
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400884
Joey Armstrong76026b72023-03-29 12:19:17 -0400885 pushd "$release_temp" >/dev/null \
Joey Armstrong43c48422023-04-03 10:17:32 -0400886 || error "pushd failed: dir is [$release_temp]"
Joey Armstrong76026b72023-03-29 12:19:17 -0400887
888 declare -a to_release=()
889 get_artifacts '.' to_release
890
Joey Armstrong55fe80e2023-04-05 18:32:14 -0400891 if false; then
Joey Armstrongf9a0a882023-04-17 11:53:57 -0400892 for fyl in "${to_release[@]}";
893 do
894 func_echo "sha256sum $fyl > ${fyl}.sha256"
895 sha256sum "$fyl" > "${fyl}.sha256"
896 done
Joey Armstrong55fe80e2023-04-05 18:32:14 -0400897 fi
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400898
899 # Generate and check checksums
Joey Armstrong55fe80e2023-04-05 18:32:14 -0400900 sha256sum -- * | grep -iv -e 'checksum' -e 'sha256' > checksum.SHA256
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400901 sha256sum -c < checksum.SHA256
902
903 echo
904 func_echo "Checksums(checksum.SHA256):"
905 cat checksum.SHA256
906
Joey Armstrong43c48422023-04-03 10:17:32 -0400907 if false; then
Joey Armstrong78cecc52023-04-03 11:39:11 -0400908 # Careful with credentials display
Joey Armstrong43c48422023-04-03 10:17:32 -0400909 get_gh_hostname login_args
Joey Armstronge8560da2023-04-26 15:44:45 -0400910 banner "gh auth status ${login_args[*]}"
Joey Armstrong43c48422023-04-03 10:17:32 -0400911 gh auth status "${login_args[@]}"
912 fi
913
Joey Armstrong76026b72023-03-29 12:19:17 -0400914 gh_release_create # publish
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400915
916 popd >/dev/null || error "pushd failed: dir is [$release_temp]"
917
918 return
919}
920
921## -----------------------------------------------------------------------
Joey Armstrong43c48422023-04-03 10:17:32 -0400922## Intent: Normalize common arguments and access to the gh command.
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400923## o Cache path to the gh command
924## o Construct a gh command line from given args
925## o Command wrapper can provide defaults (--hostname github.com)
926## -----------------------------------------------------------------------
927## Given:
Joey Armstrongdb43bde2024-04-01 14:54:35 -0400928## scalar Array variable name (local -n is a reference)
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400929## Return:
930## ref gh command line passed back to caller
931## Switches:
932## --host Pass default github hostname
Joey Armstrong01e4edb2023-08-18 12:50:32 -0400933## --verbose Enable verbose mode
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400934## --version Display command version
935## @array Remaining arguments passed as command switches.
936## -----------------------------------------------------------------------
937## See Also:
938## o https://cli.github.com/manual
939## -----------------------------------------------------------------------
940function my_gh()
941{
Joey Armstrongdaa1f0a2024-04-03 18:07:59 -0400942 func_echo "ENTER"
Joey Armstrong73bb2f62023-04-17 19:31:50 -0400943 set -x
Joey Armstrongdaa1f0a2024-04-03 18:07:59 -0400944
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400945 declare -a cmd=()
946 cmd+=("$gh_cmd")
947
948 ## ----------------------
949 ## Construct command line
950 ## ----------------------
951 # shellcheck disable=SC2034
952 declare -A action=() # pending operations
953 declare -a args=() # common gh command line args
954
955 while [ $# -gt 0 ]; do
956 local arg="$1"; shift
Joey Armstrong73bb2f62023-04-17 19:31:50 -0400957 func_echo "function arg is [$arg]"
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400958 case "$arg" in
959
Joey Armstrong43c48422023-04-03 10:17:32 -0400960 # Modes
Joey Armstrongdaa1f0a2024-04-03 18:07:59 -0400961 -*debug)
Joey Armstronge8560da2023-04-26 15:44:45 -0400962 # shellcheck disable=SC2034
963 declare -i -g debug=1
964 ;;
965 -*verbose) args+=('--verbose') ;;
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400966
Joey Armstrong43c48422023-04-03 10:17:32 -0400967 -*hostname)
968 get_gh_hostname in_args
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400969 ;;
970
Joey Armstrong43c48422023-04-03 10:17:32 -0400971 --host-repo)
972 local val
973 get_argv_repo val
Joey Armstrong76026b72023-03-29 12:19:17 -0400974
Joey Armstrong43c48422023-04-03 10:17:32 -0400975 # --repo <[HOST/]OWNER/REPO>
Joey Armstrong78cecc52023-04-03 11:39:11 -0400976 args+=('--repo' "${__githost}/${val}")
Joey Armstrong43c48422023-04-03 10:17:32 -0400977 ;;
Joey Armstrong76026b72023-03-29 12:19:17 -0400978
Joey Armstrongf9a0a882023-04-17 11:53:57 -0400979# args+=('--repo' 'github.com/opencord/bbsim')
980
Joey Armstrong43c48422023-04-03 10:17:32 -0400981 --repo)
982 local val
983 get_argv_repo val
984 args+=('--repo' "$val")
985 ;;
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400986
Joey Armstrong43c48422023-04-03 10:17:32 -0400987 --tag)
988 local val
989 get_argv_tag val
Joey Armstrong4dbe7002023-04-04 12:47:38 -0400990 args+=("$val") # No switch, pass inline
Joey Armstrong43c48422023-04-03 10:17:32 -0400991 ;;
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400992
Joey Armstrong43c48422023-04-03 10:17:32 -0400993 --title)
994 local val
995 get_argv_name val
Joey Armstrongf9a0a882023-04-17 11:53:57 -0400996 args+=('--title' "'$val'")
Joey Armstrong43c48422023-04-03 10:17:32 -0400997 ;;
Joey Armstrong76026b72023-03-29 12:19:17 -0400998
Joey Armstrong2097d3e2023-03-26 10:32:03 -0400999 *) args+=("$arg") ;;
1000 esac
1001 done
Joey Armstrong76026b72023-03-29 12:19:17 -04001002
Joey Armstrong2097d3e2023-03-26 10:32:03 -04001003 cmd+=("${args[@]}")
Joey Armstrong73bb2f62023-04-17 19:31:50 -04001004
1005 echo
1006 declare -p cmd
1007
1008 echo
Joey Armstrong2097d3e2023-03-26 10:32:03 -04001009 echo "** Running: ${cmd[*]}"
1010 "${cmd[@]}"
1011 local status=$?
1012
Joey Armstrong73bb2f62023-04-17 19:31:50 -04001013 set +x
1014 func_echo "LEAVE"
1015
Joey Armstronge8560da2023-04-26 15:44:45 -04001016 if [[ $status -eq 0 ]]; then
1017 true
1018 else
1019 false
1020 fi
1021
Joey Armstrong2097d3e2023-03-26 10:32:03 -04001022 return
1023}
1024
1025## ---------------------------------------------------------------------------
1026## Intent:
1027## ---------------------------------------------------------------------------
1028function usage()
1029{
1030 cat <<EOH
Joey Armstrong76026b72023-03-29 12:19:17 -04001031
Joey Armstrong2097d3e2023-03-26 10:32:03 -04001032Usage: $0
1033Usage: make [options] [target] ...
1034 --help This mesage
Joey Armstrong55fe80e2023-04-05 18:32:14 -04001035 --pac Personal Access Token (path to containing file or a string)
1036 --repo-name ex: voltctl
1037 --repo-org ex: opencord
Joey Armstronge8560da2023-04-26 15:44:45 -04001038 --release-notes [f] Release notes are passed by file argument
Joey Armstrong2097d3e2023-03-26 10:32:03 -04001039
1040[DEBUG]
1041 --gen-version Generate a random release version string.
1042 --git-hostname Git server hostname (default=github.com)
Joey Armstrong55fe80e2023-04-05 18:32:14 -04001043 --version-file Read version string from local version file (vs env var)
Joey Armstrongf9a0a882023-04-17 11:53:57 -04001044
1045[MODES]
Joey Armstrong55fe80e2023-04-05 18:32:14 -04001046 --debug Enable script debug mode
1047 --draft Create a draft release (vs published)
Joey Armstrong43c48422023-04-03 10:17:32 -04001048 --dry-run Simulation mode
Joey Armstrong55fe80e2023-04-05 18:32:14 -04001049 --todo Display future enhancement list
Joey Armstrong2097d3e2023-03-26 10:32:03 -04001050
Joey Armstronge8560da2023-04-26 15:44:45 -04001051All other arguments are pass-through to the gh command.
1052
Joey Armstrong55fe80e2023-04-05 18:32:14 -04001053Usage: $0 --draft --repo-org opencord --repo-name voltctl --git-hostname github.com --pac ~/access.pac
Joey Armstronge8560da2023-04-26 15:44:45 -04001054
Joey Armstrong2097d3e2023-03-26 10:32:03 -04001055EOH
Joey Armstronge8560da2023-04-26 15:44:45 -04001056
Joey Armstrong2097d3e2023-03-26 10:32:03 -04001057 return
1058}
1059
1060## ---------------------------------------------------------------------------
1061## Intent: Parse script command line arguments
1062## ---------------------------------------------------------------------------
1063function parse_args()
1064{
Joey Armstrong2097d3e2023-03-26 10:32:03 -04001065 [[ -v DEBUG ]] && func_echo "ENTER"
1066
Joey Armstrong2097d3e2023-03-26 10:32:03 -04001067 while [ $# -gt 0 ]; do
Joey Armstrong43c48422023-04-03 10:17:32 -04001068 local arg="$1"; shift
1069 func_echo "ARGV: $arg"
Joey Armstrong01e4edb2023-08-18 12:50:32 -04001070
1071 # shellcheck disable=SC2034
Joey Armstrong43c48422023-04-03 10:17:32 -04001072 case "$arg" in
Joey Armstrong2097d3e2023-03-26 10:32:03 -04001073
Joey Armstrong43c48422023-04-03 10:17:32 -04001074 -*debug) declare -i -g debug=1 ;;
1075 --draft) declare -i -g draft_release=1 ;;
1076 --dry-run) declare -i -g dry_run=1 ;;
Joey Armstrong2097d3e2023-03-26 10:32:03 -04001077
Joey Armstrong43c48422023-04-03 10:17:32 -04001078 --version-file)
1079 declare -i -g argv_version_file=1
1080 ;;
Joey Armstrong2097d3e2023-03-26 10:32:03 -04001081
Joey Armstrong43c48422023-04-03 10:17:32 -04001082 -*gen-version)
1083 declare -g -i argv_gen_version=1
1084 ;;
Joey Armstrong2097d3e2023-03-26 10:32:03 -04001085
Joey Armstrong43c48422023-04-03 10:17:32 -04001086 -*git-hostname)
1087 __githost="$1"; shift
1088 ;;
Joey Armstrong2097d3e2023-03-26 10:32:03 -04001089
Joey Armstrong55fe80e2023-04-05 18:32:14 -04001090 -*release-notes)
Joey Armstronge8560da2023-04-26 15:44:45 -04001091 [[ ! -f "$1" ]] && error "--release-notes: file path required (arg=\"$arg\")"
1092 declare -g release_notes="$1"; shift
Joey Armstrongf9a0a882023-04-17 11:53:57 -04001093 ;;
Joey Armstrong55fe80e2023-04-05 18:32:14 -04001094
Joey Armstrong43c48422023-04-03 10:17:32 -04001095 -*repo-name)
1096 __repo_name="$1"; shift
1097 ;;
1098
1099 -*repo-org)
1100 __repo_org="$1"; shift
1101 ;;
1102
1103 -*pac)
1104 declare -g pac="$1"; shift
1105 readonly pac
1106 [[ ! -f "$pac" ]] && error "--token= does not exist ($pac)"
1107 : # nop/true
1108 ;;
1109
1110 -*todo) todo ;;
1111
1112 -*help)
1113 usage
1114 exit 0
1115 ;;
1116
1117 *) error "Detected unknown argument $arg" ;;
1118 esac
Joey Armstrong2097d3e2023-03-26 10:32:03 -04001119 done
1120
Joey Armstrong26707f02023-01-26 12:41:12 -05001121 return
1122}
1123
Joey Armstrongaf577ab2022-12-15 14:43:33 -05001124##----------------##
1125##---] MAIN [---##
1126##----------------##
Joey Armstrong1962bcf2023-01-27 13:53:18 -05001127iam="${0##*/}"
1128
Joey Armstrong2097d3e2023-03-26 10:32:03 -04001129full_banner
Joey Armstronge8560da2023-04-26 15:44:45 -04001130parse_args "$@"
Joey Armstrongd99e3d22023-01-29 12:35:43 -05001131init
1132install_gh_binary
Joey Armstrong7f382ef2023-01-25 12:00:08 -05001133
Joey Armstrong01e4edb2023-08-18 12:50:32 -04001134do_login "$*"
Zack Williams27cd3e52018-09-18 16:44:50 -07001135
Joey Armstrong2097d3e2023-03-26 10:32:03 -04001136release_path='/dev/null'
1137get_release_path release_path
1138declare -p release_path
Zack Williams27cd3e52018-09-18 16:44:50 -07001139
Joey Armstrong2097d3e2023-03-26 10:32:03 -04001140pushd "$release_path" || error "pushd failed: dir is [$release_path]"
Zack Williams27cd3e52018-09-18 16:44:50 -07001141
Joey Armstrong2097d3e2023-03-26 10:32:03 -04001142 # legacy: getGitVersion "$GERRIT_PROJECT" GIT_VERSION
1143 getGitVersion GIT_VERSION
1144 getReleaseDescription RELEASE_DESCRIPTION
Joey Armstrong55fe80e2023-04-05 18:32:14 -04001145 if [[ ! -v release_notes ]]; then
Joey Armstronge8560da2023-04-26 15:44:45 -04001146 func_echo "Generating release notes from RELEASE_DESCRIPTION"
Joey Armstrongf9a0a882023-04-17 11:53:57 -04001147 declare -g release_notes="$scratch/release.notes"
1148 echo "$RELEASE_DESCRIPTION" > "$release_notes"
Joey Armstrong55fe80e2023-04-05 18:32:14 -04001149 fi
Joey Armstronge8560da2023-04-26 15:44:45 -04001150 cat "$release_notes"
Zack Williams27cd3e52018-09-18 16:44:50 -07001151
Joey Armstrongeef8c2c2023-03-27 17:27:43 -04001152 cat <<EOM
1153
1154** -----------------------------------------------------------------------
1155** GIT VERSION: $(declare -p GIT_VERSION)
1156** RELEASE_DESCRIPTION: $(declare -p RELEASE_DESCRIPTION)
1157** RELEASE_TARGETS: $(declare -p RELEASE_TARGETS)
Joey Armstrong43c48422023-04-03 10:17:32 -04001158** -----------------------------------------------------------------------
Joey Armstronge8560da2023-04-26 15:44:45 -04001159** URL: https://github.com/opencord/bbsim/releases
1160** -----------------------------------------------------------------------
Joey Armstrong43c48422023-04-03 10:17:32 -04001161** Running: make ${RELEASE_TARGETS}
Joey Armstrongeef8c2c2023-03-27 17:27:43 -04001162** -----------------------------------------------------------------------
1163EOM
Joey Armstrong2097d3e2023-03-26 10:32:03 -04001164 # build the release, can be multiple space separated targets
1165 # -----------------------------------------------------------------------
1166 # % go build command-line-arguments:
1167 # copying /tmp/go-build4212845548/b001/exe/a.out:
1168 # open release/voltctl-1.8.25-linux-amd64: permission denied
1169 # missing: docker run mkdir
1170 # -----------------------------------------------------------------------
1171 # shellcheck disable=SC2086
Joey Armstrongeef8c2c2023-03-27 17:27:43 -04001172 make "$RELEASE_TARGETS"
Joey Armstrong2097d3e2023-03-26 10:32:03 -04001173 copyToRelease
Joey Armstrong50f6e0b2023-01-24 14:14:08 -05001174
Joey Armstrong26707f02023-01-26 12:41:12 -05001175 cat <<EOM
Joey Armstrong1962bcf2023-01-27 13:53:18 -05001176
1177** -----------------------------------------------------------------------
1178** Create the release:
1179** 1) Create initial github release with download area.
1180** 2) Generate checksum.SHA256 for all released files.
1181** 3) Upload files to complete the release.
Joey Armstrong75a0d932023-03-28 08:59:54 -04001182** 4) Display released info from github
Joey Armstrong1962bcf2023-01-27 13:53:18 -05001183** -----------------------------------------------------------------------
Joey Armstrong26707f02023-01-26 12:41:12 -05001184EOM
1185
Joey Armstrong2097d3e2023-03-26 10:32:03 -04001186 showReleases
Joey Armstrong2097d3e2023-03-26 10:32:03 -04001187 release_staging
Joey Armstronge8560da2023-04-26 15:44:45 -04001188
1189 # Useful to display but --draft images use a non-standard subdir identifier.
1190 # showReleaseUrl
1191
Joey Armstrong2097d3e2023-03-26 10:32:03 -04001192 popd || error "pushd failed: dir is [$release_path]"
Joey Armstrong28eddda2023-01-10 03:09:34 -05001193
Joey Armstrong2097d3e2023-03-26 10:32:03 -04001194do_logout
1195
Joey Armstrong28eddda2023-01-10 03:09:34 -05001196# [SEE ALSO]
1197# -----------------------------------------------------------------------
1198# https://www.shellcheck.net/wiki/SC2236
Joey Armstrong26707f02023-01-26 12:41:12 -05001199# https://docs.github.com/en/rest/releases/releases?apiVersion=2022-11-28#create-a-release
Joey Armstrong28eddda2023-01-10 03:09:34 -05001200# -----------------------------------------------------------------------
Joey Armstrongf085d872023-01-28 17:52:29 -05001201# https://cli.github.com/manual/gh_help_reference
1202# https://cli.github.com/manual/gh_release
1203# -----------------------------------------------------------------------
Joey Armstrong28eddda2023-01-10 03:09:34 -05001204
1205# [EOF]