Skip to content

Commit

Permalink
Fix readme instructions for Makefile use (#503)
Browse files Browse the repository at this point in the history
* Fix readme instructions for Makefile use

* fix
  • Loading branch information
leighmcculloch authored Sep 29, 2023
1 parent acc11a7 commit 32223a0
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,17 +137,21 @@ built with.
build with. Typically include `--disable-tests`, and to enable the next protocol
version that is still in development, add
`--enable-next-protocol-version-unsafe-for-production`.
- `GO_REF`: The git reference of stellar-horizon and stellar-friendbot to build.
- `SOROBAN_TOOLS_REF`: The git reference of soroban-rpc to build.
- `CORE_SUPPORTS_TESTING_SOROBAN_HIGH_LIMIT_OVERRIDE`: Flag for whether high limits for testing are enabled. Default `false`.
- `HORIZON_REF`: The git reference of stellar-horizon to build.
- `FRIENDBOT_REF`: The git reference of stellar-friendbot to build.
- `SOROBAN_RPC_REF`: The git reference of soroban-rpc to build.

For example, to build the latest soroban-dev variation:
For example:
```
make build \
TAG=soroban-dev \
CORE_REF=c0ad35aa19297e112d71fcc5755458495f99a237 \
CORE_CONFIGURE_FLAGS='--disable-tests --enable-next-protocol-version-unsafe-for-production' \
GO_REF=soroban-v0.0.4 \
SOROBAN_TOOLS_REF=v0.4.0
CORE_REF=... \
CORE_CONFIGURE_FLAGS=... \
CORE_SUPPORTS_TESTING_SOROBAN_HIGH_LIMIT_OVERRIDE=... \
HORIZON_REF=... \
FRIENDBOT_REF=... \
SOROBAN_RPC_REF=...
```

### Background vs. Interactive containers
Expand Down

0 comments on commit 32223a0

Please sign in to comment.