Skip to content

Commit

Permalink
docs: Update multichain-testing README.md (#9917)
Browse files Browse the repository at this point in the history
closes: #XXXX
refs: #XXXX

## Description
The `make clean setup` command specified in `multichain-testing` README always fails if you're setting it up for the first time due to "clean" trying to do cleanup using binaries that do not exist. 

Secondly, the `make override-chain-registry` also fails due to the absence of dependencies (`tsx` in particular). 

This PR attempts to update the `Initial Setup` section to fix these cases. 

### Security Considerations


### Scaling Considerations


### Documentation Considerations


### Testing Considerations


### Upgrade Considerations
  • Loading branch information
mergify[bot] authored Aug 22, 2024
2 parents 6d97bc4 + fbf07d1 commit 7a08c6a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion multichain-testing/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ setup-kind:

.PHONY: clean-kind
clean-kind:
kind delete cluster --name $(KIND_CLUSTER)
-kind delete cluster --name $(KIND_CLUSTER)

###############################################################################
### Agoric Setup ###
Expand Down
8 changes: 7 additions & 1 deletion multichain-testing/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,13 @@ The `agoric` software revision includes the vats necessary for building and test

## Initial Setup

First, ensure you have Kubernetes available. See https://docs.cosmology.zone/starship/get-started/step-2.
Install the relevant dependencies:

```sh
yarn install
```

Ensure you have Kubernetes available. See https://docs.cosmology.zone/starship/get-started/step-2.

The following will install `kubectl`, `kind`, `helm`, and `yq` as needed.

Expand Down

0 comments on commit 7a08c6a

Please sign in to comment.