Update README.md

This commit is contained in:
Raj Gokal
2020-04-09 10:58:42 -07:00
committed by GitHub
parent cb5c337540
commit e873c93be3

View File

@ -13,7 +13,7 @@
## Building ## Building
1. **Install rustc, cargo and rustfmt.** **1. Install rustc, cargo and rustfmt.**
```bash ```bash
$ curl https://sh.rustup.rs -sSf | sh $ curl https://sh.rustup.rs -sSf | sh
@ -34,27 +34,27 @@ $ sudo apt-get update
$ sudo apt-get install libssl-dev libudev-dev pkg-config zlib1g-dev llvm clang $ sudo apt-get install libssl-dev libudev-dev pkg-config zlib1g-dev llvm clang
``` ```
2. **Download the source code.** **2. Download the source code.**
```bash ```bash
$ git clone https://github.com/solana-labs/solana.git $ git clone https://github.com/solana-labs/solana.git
$ cd solana $ cd solana
``` ```
3. **Build.** **3. Build.**
```bash ```bash
$ cargo build $ cargo build
``` ```
Then to run a minimal local cluster **4. Run a minimal local cluster.**
```bash ```bash
$ ./run.sh $ ./run.sh
``` ```
## Testing ## Testing
Run the test suite: **Run the test suite:**
```bash ```bash
$ cargo test $ cargo test
@ -62,14 +62,14 @@ $ cargo test
**Local Testnet** **Local Testnet**
Start your own testnet locally, instructions are in the online docs [Solana: Blockchain Rebuild for Scale: Getting Started](https://docs.solana.com/building-from-source). Start your own testnet locally, instructions are in the [online docs](https://docs.solana.com/building-from-source).
**Remote Testnets** **Remote Testnets**
* `testnet` - public stable testnet accessible via devnet.solana.com. Runs 24/7 * `testnet` - public stable testnet accessible via devnet.solana.com. Runs 24/7
## Deploy process ### Deploy process
They are deployed with the `ci/testnet-manager.sh` script through a list of [scheduled They are deployed with the `ci/testnet-manager.sh` script through a list of [scheduled
buildkite jobs](https://buildkite.com/solana-labs/testnet-management/settings/schedules). buildkite jobs](https://buildkite.com/solana-labs/testnet-management/settings/schedules).