Go to file
Jack May d3e3f51330
Ignore log tests due to concurrency conflicts (#9719)
2020-04-25 22:38:59 -07:00
.buildkite
.github
accounts-bench
archiver
archiver-lib One less alloc per transaction (#9705) 2020-04-24 13:03:46 -06:00
archiver-utils
banking-bench Cache banks in BankForks until optional largest_confirmed_root (#9678) 2020-04-24 15:49:57 -07:00
bench-exchange One less alloc per transaction (#9705) 2020-04-24 13:03:46 -06:00
bench-streamer
bench-tps One less alloc per transaction (#9705) 2020-04-24 13:03:46 -06:00
chacha
chacha-cuda
chacha-sys
ci Cargo check all targets (#9718) 2020-04-25 05:14:37 -07:00
clap-utils Tame wallet manager better (#9567) 2020-04-18 11:54:21 -07:00
cli Add custodian option to withdraw-stake command (#9662) 2020-04-22 15:00:18 -07:00
cli-config
client Bump jsonrpc-http-server from 14.0.6 to 14.1.0 (#9628) 2020-04-22 09:21:05 -07:00
core Cache banks in BankForks until optional largest_confirmed_root (#9678) 2020-04-24 15:49:57 -07:00
crate-features
docs Add missing slash 2020-04-23 21:37:25 -07:00
dos solana-dos can now DoS gossip nodes (#9652) 2020-04-23 11:46:12 -07:00
download-utils
faucet
genesis
genesis-programs
gossip solana-dos can now DoS gossip nodes (#9652) 2020-04-23 11:46:12 -07:00
install One less alloc per transaction (#9705) 2020-04-24 13:03:46 -06:00
keygen Bump num_cpus from 1.12.0 to 1.13.0 (#9682) 2020-04-23 13:08:06 -07:00
ledger Cache banks in BankForks until optional largest_confirmed_root (#9678) 2020-04-24 15:49:57 -07:00
ledger-tool Revert shred fs (#9712) 2020-04-24 15:04:23 -07:00
local-cluster Revert shred fs (#9712) 2020-04-24 15:04:23 -07:00
log-analyzer
logger
measure
merkle-tree
metrics Exit cleanly on panic! so the process don't limp along in a half-dead state (#9690) 2020-04-23 12:05:13 -07:00
multinode-demo Extend snapshot interval in multinode demo (#9657) 2020-04-22 12:25:15 -07:00
net Remove validator-info publish from net scripts (#9673) 2020-04-22 18:04:22 -06:00
net-shaper
net-utils
perf
programs Ignore log tests due to concurrency conflicts (#9719) 2020-04-25 22:38:59 -07:00
ramp-tps One less alloc per transaction (#9705) 2020-04-24 13:03:46 -06:00
rayon-threadlimit Bump num_cpus from 1.12.0 to 1.13.0 (#9682) 2020-04-23 13:08:06 -07:00
remote-wallet Handle outdated and current ledger-solana-apps (#9605) 2020-04-20 14:57:37 -06:00
runtime One less alloc per transaction (#9705) 2020-04-24 13:03:46 -06:00
scripts Cargo check all targets (#9718) 2020-04-25 05:14:37 -07:00
sdk One less alloc per transaction (#9705) 2020-04-24 13:03:46 -06:00
sdk-c Bump bs58 from 0.3.0 to 0.3.1 2020-04-21 08:07:00 -07:00
stake-accounts Don't attempt to rebase or move empty accounts (#9651) 2020-04-22 09:45:44 -07:00
stake-monitor One less alloc per transaction (#9705) 2020-04-24 13:03:46 -06:00
streamer
sys-tuner
system-test Fix up test 2020-04-25 09:33:44 -07:00
transaction-status Bump bs58 from 0.3.0 to 0.3.1 2020-04-21 08:07:00 -07:00
upload-perf
validator Add support for log rotation, sending SIGUSR1 will cause the log file to be re-opened (#9713) 2020-04-24 14:26:53 -07:00
vote-signer Bump jsonrpc-derive from 14.0.5 to 14.1.0 (#9702) 2020-04-24 15:24:18 -07:00
watchtower
.clippy.toml
.codecov.yml
.gitbook.yaml Clean up wallet URL paths (#9667) 2020-04-22 16:48:21 -07:00
.gitignore
.mergify.yml
.travis.yml
CONTRIBUTING.md
Cargo.lock Ignore log tests due to concurrency conflicts (#9719) 2020-04-25 22:38:59 -07:00
Cargo.toml
LICENSE
README.md Update link 2020-04-18 15:11:55 -07:00
RELEASE.md
fetch-perf-libs.sh
run.sh Support ad-hoc genesis args in run.sh (#9697) 2020-04-23 22:48:53 -07:00

README.md

Solana

Solana crate Solana documentation Build status codecov

Building

1. Install rustc, cargo and rustfmt.

$ curl https://sh.rustup.rs -sSf | sh
$ source $HOME/.cargo/env
$ rustup component add rustfmt

If your rustc version is lower than 1.39.0, please update it:

$ rustup update

On Linux systems you may need to install libssl-dev, pkg-config, zlib1g-dev, etc. On Ubuntu:

$ sudo apt-get update
$ sudo apt-get install libssl-dev libudev-dev pkg-config zlib1g-dev llvm clang

2. Download the source code.

$ git clone https://github.com/solana-labs/solana.git
$ cd solana

3. Build.

$ cargo build

4. Run a minimal local cluster.

$ ./run.sh

Testing

Run the test suite:

$ cargo test

Starting a local testnet

Start your own testnet locally, instructions are in the online docs.

Accessing the remote testnet

  • testnet - public stable testnet accessible via devnet.solana.com. Runs 24/7

Benchmarking

First install the nightly build of rustc. cargo bench requires use of the unstable features only available in the nightly build.

$ rustup install nightly

Run the benchmarks:

$ cargo +nightly bench

Release Process

The release process for this project is described here.

Code coverage

To generate code coverage statistics:

$ scripts/coverage.sh
$ open target/cov/lcov-local/index.html

Why coverage? While most see coverage as a code quality metric, we see it primarily as a developer productivity metric. When a developer makes a change to the codebase, presumably it's a solution to some problem. Our unit-test suite is how we encode the set of problems the codebase solves. Running the test suite should indicate that your change didn't infringe on anyone else's solutions. Adding a test protects your solution from future changes. Say you don't understand why a line of code exists, try deleting it and running the unit-tests. The nearest test failure should tell you what problem was solved by that code. If no test fails, go ahead and submit a Pull Request that asks, "what problem is solved by this code?" On the other hand, if a test does fail and you can think of a better way to solve the same problem, a Pull Request with your solution would most certainly be welcome! Likewise, if rewriting a test can better communicate what code it's protecting, please send us that patch!

Disclaimer

All claims, content, designs, algorithms, estimates, roadmaps, specifications, and performance measurements described in this project are done with the author's best effort. It is up to the reader to check and validate their accuracy and truthfulness. Furthermore nothing in this project constitutes a solicitation for investment.