-
Notifications
You must be signed in to change notification settings - Fork 11.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add internal build names to dictionary (#17644)
Add internal builds to the dictionary ``` eugene@eugene-dev ~/code/sui (ebmifa/add_internal_binary_list) $ cat ./binary-build-list.json | jq -r '.release_binaries[]' sui sui-node sui-tool sui-faucet sui-test-validator sui-data-ingestion sui-bridge sui-bridge-cli sui-graphql-rpc ```
- Loading branch information
Showing
2 changed files
with
25 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"release_binaries": [ | ||
"sui", | ||
"sui-node", | ||
"sui-tool", | ||
"sui-faucet", | ||
"sui-test-validator", | ||
"sui-data-ingestion", | ||
"sui-bridge", | ||
"sui-bridge-cli", | ||
"sui-graphql-rpc" | ||
], | ||
"internal_binaries": [ | ||
"stress", | ||
"sui-proxy", | ||
"sui-metric-checker", | ||
"sui-analytics-indexer", | ||
"sui-security-watchdog" | ||
] | ||
} |