Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: other references to autonomi binary #2483

Merged
merged 1 commit into from
Dec 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading