This repository has been archived by the owner on Oct 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #119 from hjr3/benchmark
Update benchmarking info
- Loading branch information
Showing
3 changed files
with
32 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
|
||
apt-get update | ||
apt-get install build-essential libssl-dev git -y | ||
cd /root | ||
git clone https://github.com/wg/wrk.git | ||
cd /root/wrk | ||
make | ||
cp wrk /usr/local/bin | ||
git clone https://github.com/hjr3/weldr.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
|
||
apt-get update | ||
apt-get install gcc libssl-dev pkg-config capnproto git -y | ||
cd /root | ||
curl https://sh.rustup.rs -sSf | sh -s -- -y | ||
. /root/.cargo/env | ||
git clone https://github.com/hjr3/weldr.git | ||
cd /root/weldr | ||
cargo build --release |