Skip to content

Commit

Permalink
remove all reference of rpc-server (MystenLabs#6514)
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickkuo authored Dec 1, 2022
1 parent bcb77b8 commit c894435
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 6 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ jobs:
echo BIN_SUI_NODE="target/release/sui-node" >> $GITHUB_OUTPUT
echo BIN_SUI_TOOL="target/release/sui-tool" >> $GITHUB_OUTPUT
echo BIN_SUI_FAUCET="target/release/sui-faucet" >> $GITHUB_OUTPUT
echo BIN_RPC_SERVER="target/release/rpc-server" >> $GITHUB_OUTPUT
- name: Upload release artifacts
uses: actions/upload-artifact@v3
Expand All @@ -63,7 +62,6 @@ jobs:
${{ steps.build.outputs.BIN_SUI_NODE }}
${{ steps.build.outputs.BIN_SUI_TOOL }}
${{ steps.build.outputs.BIN_SUI_FAUCET }}
${{ steps.build.outputs.BIN_RPC_SERVER }}
- name: Publish binaries
uses: softprops/action-gh-release@v1
Expand All @@ -74,6 +72,5 @@ jobs:
${{ steps.build.outputs.BIN_SUI_NODE }}
${{ steps.build.outputs.BIN_SUI_TOOL }}
${{ steps.build.outputs.BIN_SUI_FAUCET }}
${{ steps.build.outputs.BIN_RPC_SERVER }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion crates/sui-sdk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This directory contains examples of interacting with a Move language smart contr
### Demo quick start

#### 1. Prepare the environment
1. Install `sui` and `rpc-server` binaries following the [Sui installation](https://github.com/MystenLabs/sui/blob/main/doc/src/build/install.md#binaries) docs.
1. Install `sui` binary following the [Sui installation](https://github.com/MystenLabs/sui/blob/main/doc/src/build/install.md#binaries) docs.
1. [Connect to Sui Devnet](https://github.com/MystenLabs/sui/blob/main/doc/src/build/devnet.md).
1. [Make sure you have two addresses with gas](https://github.com/MystenLabs/sui/blob/main/doc/src/build/cli-client.md#adding-accounts-to-the-client) by using the `new-address` command to create new addresses:
```shell
Expand Down
2 changes: 0 additions & 2 deletions docker/sui-tools/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ COPY narwhal narwhal
RUN cargo build --release \
--bin sui-node \
--bin sui \
--bin rpc-server \
--bin sui-faucet \
--bin stress \
--bin sui-cluster-test
Expand All @@ -50,7 +49,6 @@ FROM debian:bullseye-slim AS runtime
WORKDIR sui
COPY --from=builder /sui/target/release/sui-node /usr/local/bin
COPY --from=builder /sui/target/release/sui /usr/local/bin
COPY --from=builder /sui/target/release/rpc-server /usr/local/bin
COPY --from=builder /sui/target/release/sui-faucet /usr/local/bin
COPY --from=builder /sui/target/release/stress /usr/local/bin
COPY --from=builder /sui/target/release/sui-cluster-test /usr/local/bin
Expand Down

0 comments on commit c894435

Please sign in to comment.