@@ -120,7 +120,7 @@ function main_help(){
120
120
echo " artifacts: $DEFAULT_ARTIFACTS "
121
121
echo " networks: $DEFAULT_NETWORKS "
122
122
echo " codenames: $DEFAULT_CODENAMES "
123
- echo " architectures: $DEFAULT_ARCHITECTURE "
123
+ echo " architectures: $DEFAULT_ARCHITECTURES "
124
124
echo " "
125
125
echo " Available values: "
126
126
echo " artifacts: mina-logproc,mina-archive,mina-rosetta,mina"
@@ -617,7 +617,7 @@ function publish_help(){
617
617
echo " Parameters:"
618
618
echo " "
619
619
printf " %-25s %s\n" " -h | --help" " show help" ;
620
- printf " %-25s %s\n" " --archs" " [list string] target architectures list. Default: $DEFAULT_ARCHITECTURE " ;
620
+ printf " %-25s %s\n" " --archs" " [list string] target architectures list. Default: $DEFAULT_ARCHITECTURES " ;
621
621
printf " %-25s %s\n" " --artifacts" " [comma separated list] list of artifacts to publish. e.g mina-logproc,mina-archive,mina-rosetta" ;
622
622
printf " %-25s %s\n" " --networks" " [comma separated list] list of networks to publish. e.g devnet,mainnet" ;
623
623
printf " %-25s %s\n" " --buildkite-build-id" " [string] buildkite build id of release build to publish" ;
@@ -970,7 +970,7 @@ function promote_help(){
970
970
echo " Parameters:"
971
971
echo " "
972
972
printf " %-25s %s\n" " -h | --help" " show help" ;
973
- printf " %-25s %s\n" " --arch" " [string] target architecture. Default: $DEFAULT_ARCHITECTURE " ;
973
+ printf " %-25s %s\n" " --arch" " [string] target architecture. Default: $DEFAULT_ARCHITECTURES " ;
974
974
printf " %-25s %s\n" " --artifacts" " [comma separated list] list of artifacts to publish. e.g mina-logproc,mina-archive,mina-rosetta" ;
975
975
printf " %-25s %s\n" " --networks" " [comma separated list] list of networks to publish. e.g devnet,mainnet" ;
976
976
printf " %-25s %s\n" " --source-version" " [path] source version of build to publish" ;
@@ -1015,7 +1015,7 @@ function promote(){
1015
1015
local __dry_run=0
1016
1016
local __debian_repo=$DEBIAN_REPO
1017
1017
local __debian_sign_key=" "
1018
- local __arch=" $DEFAULT_ARCHITECTURE "
1018
+ local __arch=" $DEFAULT_ARCHITECTURES "
1019
1019
1020
1020
1021
1021
while [ ${# } -gt 0 ]; do
@@ -1278,7 +1278,7 @@ function verify_help(){
1278
1278
echo " Parameters:"
1279
1279
echo " "
1280
1280
printf " %-25s %s\n" " -h | --help" " show help" ;
1281
- printf " %-25s %s\n" " --arch" " [string] target architecture. Default: $DEFAULT_ARCHITECTURE " ;
1281
+ printf " %-25s %s\n" " --arch" " [string] target architecture. Default: $DEFAULT_ARCHITECTURES " ;
1282
1282
printf " %-25s %s\n" " --artifacts" " [comma separated list] list of artifacts to publish. e.g mina-logproc,mina-archive,mina-rosetta" ;
1283
1283
printf " %-25s %s\n" " --networks" " [comma separated list] list of networks to publish. e.g devnet,mainnet" ;
1284
1284
printf " %-25s %s\n" " --version" " [path] target version of build to publish" ;
@@ -1288,8 +1288,8 @@ function verify_help(){
1288
1288
printf " %-25s %s\n" " --docker-io" " [bool] publish to docker.io instead of gcr.io" ;
1289
1289
printf " %-25s %s\n" " --only-dockers" " [bool] publish only docker images" ;
1290
1290
printf " %-25s %s\n" " --only-debians" " [bool] publish only debian packages" ;
1291
- printf " %-25s %s\n" " --docker-suffix" " [string] suffix to append to docker image tags" ;
1292
1291
printf " %-25s %s\n" " --arch" " [string] architecture (amd64 or arm64)" ;
1292
+ printf " %-25s %s\n" " --profile" " [string] build profile to publish. e.g lightnet, mainnet. default: $DEFAULT_PROFILE " ;
1293
1293
echo " "
1294
1294
echo " Example:"
1295
1295
echo " "
@@ -1326,7 +1326,6 @@ function verify(){
1326
1326
local __only_debians=0
1327
1327
local __debian_repo=$DEBIAN_REPO
1328
1328
local __debian_repo_signed=0
1329
- local __docker_suffix=" "
1330
1329
local __archs=" $DEFAULT_ARCHITECTURES "
1331
1330
local __profile=$DEFAULT_PROFILE
1332
1331
@@ -1672,7 +1671,7 @@ function persist_help(){
1672
1671
echo " Parameters:"
1673
1672
echo " "
1674
1673
printf " %-25s %s\n" " -h | --help" " show help" ;
1675
- printf " %-25s %s\n" " --arch" " [string] target architecture. Default: $DEFAULT_ARCHITECTURE " ;
1674
+ printf " %-25s %s\n" " --arch" " [string] target architecture. Default: $DEFAULT_ARCHITECTURES " ;
1676
1675
printf " %-25s %s\n" " --backend" " [string] backend to persist artifacts. e.g gs,hetzner" ;
1677
1676
printf " %-25s %s\n" " --artifacts" " [comma separated list] list of artifacts to persist. e.g mina-logproc,mina-archive,mina-rosetta" ;
1678
1677
printf " %-25s %s\n" " --build_id" " [string] buildkite build id to persist artifacts" ;
@@ -1699,7 +1698,7 @@ function persist(){
1699
1698
local __codename
1700
1699
local __new_version
1701
1700
local __suite=" unstable"
1702
- local __arch=" $DEFAULT_ARCHITECTURE "
1701
+ local __arch=" $DEFAULT_ARCHITECTURES "
1703
1702
1704
1703
while [ ${# } -gt 0 ]; do
1705
1704
error_message=" Error: a value is needed for '$1 '" ;
0 commit comments