Update to v0.18.0

This commit is contained in:
Michael Vines
2019-08-20 16:53:12 -07:00
parent 32de5e6e7a
commit e366fb6328
4 changed files with 8 additions and 9 deletions

View File

@ -12,7 +12,7 @@ updates is managed using an on-chain update manifest program.
#### Fetch and run a pre-built installer using a bootstrap curl/shell script #### Fetch and run a pre-built installer using a bootstrap curl/shell script
The easiest install method for supported platforms: The easiest install method for supported platforms:
```bash ```bash
$ curl -sSf https://raw.githubusercontent.com/solana-labs/solana/v0.16.0/install/solana-install-init.sh | sh $ curl -sSf https://raw.githubusercontent.com/solana-labs/solana/v0.18.0/install/solana-install-init.sh | sh
``` ```
This script will check github for the latest tagged release and download and run the This script will check github for the latest tagged release and download and run the
@ -23,7 +23,7 @@ If additional arguments need to be specified during the installation, the
following shell syntax is used: following shell syntax is used:
```bash ```bash
$ init_args=.... # arguments for `solana-install-init ...` $ init_args=.... # arguments for `solana-install-init ...`
$ curl -sSf https://raw.githubusercontent.com/solana-labs/solana/v0.16.0/install/solana-install-init.sh | sh -s - ${init_args} $ curl -sSf https://raw.githubusercontent.com/solana-labs/solana/v0.18.0/install/solana-install-init.sh | sh -s - ${init_args}
``` ```
#### Fetch and run a pre-built installer from a Github release #### Fetch and run a pre-built installer from a Github release
@ -31,7 +31,7 @@ With a well-known release URL, a pre-built binary can be obtained for supported
platforms: platforms:
```bash ```bash
$ curl -o solana-install-init https://github.com/solana-labs/solana/releases/download/v0.16.0/solana-install-init-x86_64-apple-darwin $ curl -o solana-install-init https://github.com/solana-labs/solana/releases/download/v0.18.0/solana-install-init-x86_64-apple-darwin
$ chmod +x ./solana-install-init $ chmod +x ./solana-install-init
$ ./solana-install-init --help $ ./solana-install-init --help
``` ```

View File

@ -53,8 +53,7 @@ software.
##### Linux and mac OS ##### Linux and mac OS
```bash ```bash
$ export SOLANA_RELEASE=v0.16.0 # skip this line to install the latest release $ curl -sSf https://raw.githubusercontent.com/solana-labs/solana/v0.18.0/install/solana-install-init.sh | sh -s
$ curl -sSf https://raw.githubusercontent.com/solana-labs/solana/v0.16.0/install/solana-install-init.sh | sh -s
``` ```
Alternatively build the `solana-install` program from source and run the Alternatively build the `solana-install` program from source and run the

View File

@ -6,7 +6,7 @@ The `solana-install` tool can be used to easily install and upgrade the validato
software on Linux x86_64 and mac OS systems. software on Linux x86_64 and mac OS systems.
```bash ```bash
$ curl -sSf https://raw.githubusercontent.com/solana-labs/solana/v0.16.5/install/solana-install-init.sh | sh -s $ curl -sSf https://raw.githubusercontent.com/solana-labs/solana/v0.18.0/install/solana-install-init.sh | sh -s
``` ```
Alternatively build the `solana-install` program from source and run the Alternatively build the `solana-install` program from source and run the

View File

@ -27,16 +27,16 @@ commands in the following pages.
If you are bootstrapping with `solana-install`, you can specify the release tag or named channel to install to match your desired testnet. If you are bootstrapping with `solana-install`, you can specify the release tag or named channel to install to match your desired testnet.
```bash ```bash
$ curl -sSf https://raw.githubusercontent.com/solana-labs/solana/v0.16.5/install/solana-install-init.sh | sh -s - 0.17.2 $ curl -sSf https://raw.githubusercontent.com/solana-labs/solana/v0.18.0/install/solana-install-init.sh | sh -s - 0.18.0
``` ```
```bash ```bash
$ curl -sSf https://raw.githubusercontent.com/solana-labs/solana/v0.16.5/install/solana-install-init.sh | sh -s - beta $ curl -sSf https://raw.githubusercontent.com/solana-labs/solana/v0.18.0/install/solana-install-init.sh | sh -s - beta
``` ```
Similarly, you can add this argument to the `solana-install` command if you've built the program from source: Similarly, you can add this argument to the `solana-install` command if you've built the program from source:
```bash ```bash
$ solana-install init 0.17.2 $ solana-install init 0.18.0
``` ```
If you are downloading pre-compiled binaries or building from source, simply choose the release matching your desired testnet. If you are downloading pre-compiled binaries or building from source, simply choose the release matching your desired testnet.