Skip to content

Commit

Permalink
Add internal build names to dictionary (#17644)
Browse files Browse the repository at this point in the history
## Description 
Add internal builds to the dictionary

## Test plan 
```
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
ebmifa authored May 10, 2024
1 parent ab07289 commit b5f76f1
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ jobs:
run: |
mkdir -p ${{ env.TMP_BUILD_DIR }}
for binary in $(cat ./binary-build-list.json | jq -r '.[]'); do
for binary in $(cat ./binary-build-list.json | jq -r '.release_binaries[]'); do
mv ./target/release/${binary}${{ env.extention }} ${{ env.TMP_BUILD_DIR }}/${binary}${{ env.extention }}
done
Expand Down
31 changes: 20 additions & 11 deletions binary-build-list.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,20 @@
[
"sui",
"sui-node",
"sui-tool",
"sui-faucet",
"sui-test-validator",
"sui-data-ingestion",
"sui-bridge",
"sui-bridge-cli",
"sui-graphql-rpc"
]
{
"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"
]
}

0 comments on commit b5f76f1

Please sign in to comment.