Skip to content

Commit

Permalink
fix: other references to autonomi binary
Browse files Browse the repository at this point in the history
These should also have been replaced as part of the crate/binary rename.
  • Loading branch information
jacderida committed Dec 3, 2024
1 parent 93e60dd commit 2c27412
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
20 changes: 10 additions & 10 deletions Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -68,15 +68,15 @@ build-release-artifacts arch nightly="false":
cargo binstall --no-confirm cross
cross build --release --target $arch --bin nat-detection $nightly_feature
cross build --release --target $arch --bin node-launchpad $nightly_feature
cross build --release --features network-contacts,websockets --target $arch --bin autonomi $nightly_feature
cross build --release --features network-contacts,websockets --target $arch --bin ant $nightly_feature
cross build --release --features network-contacts,websockets --target $arch --bin antnode $nightly_feature
cross build --release --target $arch --bin antctl $nightly_feature
cross build --release --target $arch --bin antctld $nightly_feature
cross build --release --target $arch --bin antnode_rpc_client $nightly_feature
else
cargo build --release --target $arch --bin nat-detection $nightly_feature
cargo build --release --target $arch --bin node-launchpad $nightly_feature
cargo build --release --features network-contacts,websockets --target $arch --bin autonomi $nightly_feature
cargo build --release --features network-contacts,websockets --target $arch --bin ant $nightly_feature
cargo build --release --features network-contacts,websockets --target $arch --bin antnode $nightly_feature
cargo build --release --target $arch --bin antctl $nightly_feature
cargo build --release --target $arch --bin antctld $nightly_feature
Expand Down Expand Up @@ -115,7 +115,7 @@ package-all-bins:
set -e
just package-bin "nat-detection"
just package-bin "node-launchpad"
just package-bin "autonomi"
just package-bin "ant"
just package-bin "antnode"
just package-bin "antctl"
just package-bin "antctld"
Expand All @@ -140,7 +140,7 @@ package-bin bin version="":
supported_bins=(\
"nat-detection" \
"node-launchpad" \
"autonomi" \
"ant" \
"antnode" \
"antctl" \
"antctld" \
Expand All @@ -155,7 +155,7 @@ package-bin bin version="":
node-launchpad)
crate_dir_name="node-launchpad"
;;
autonomi)
ant)
crate_dir_name="autonomi-cli"
;;
antnode)
Expand Down Expand Up @@ -208,7 +208,7 @@ upload-all-packaged-bins-to-s3:
binaries=(
nat-detection
node-launchpad
autonomi
ant
antnode
antctl
antnode_rpc_client
Expand All @@ -229,7 +229,7 @@ upload-packaged-bin-to-s3 bin_name:
node-launchpad)
bucket="node-launchpad"
;;
autonomi)
ant)
bucket="autonomi-cli"
;;
antnode)
Expand All @@ -239,7 +239,7 @@ upload-packaged-bin-to-s3 bin_name:
bucket="antctl"
;;
antctld)
bucket="antctld"
bucket="antctl"
;;
antnode_rpc_client)
bucket="antnode-rpc-client"
Expand Down Expand Up @@ -279,7 +279,7 @@ delete-s3-bin bin_name version:
node-launchpad)
bucket="node-launchpad"
;;
autonomi)
ant)
bucket="autonomi-cli"
;;
antnode)
Expand Down Expand Up @@ -363,7 +363,7 @@ package-arch arch:
binaries=(
nat-detection
node-launchpad
autonomi
ant
antnode
antctl
antnode_rpc_client
Expand Down
4 changes: 2 additions & 2 deletions resources/scripts/remove-s3-binary-archives.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ architectures=(
declare -A binary_crate_dir_mappings=(
["nat-detection"]="nat-detection"
["node-launchpad"]="node-launchpad"
["autonomi"]="autonomi-cli"
["ant"]="ant-cli"
["antnode"]="ant-node"
["antctl"]="ant-node-manager"
["antnode_rpc_client"]="ant-node-rpc-client"
Expand All @@ -26,7 +26,7 @@ declare -A binary_crate_dir_mappings=(
declare -A binary_s3_bucket_mappings=(
["nat-detection"]="nat-detection"
["node-launchpad"]="node-launchpad"
["autonomi"]="autonomi-cli"
["ant"]="autonomi-cli"
["antnode"]="antnode"
["antctl"]="antctl"
["antnode_rpc_client"]="antnode-rpc-client"
Expand Down

0 comments on commit 2c27412

Please sign in to comment.