Last active
July 6, 2020 23:57
-
-
Save travisdowns/83b8d427e8477b38ef1fa6f99c540caa to your computer and use it in GitHub Desktop.
set up ec2 ubuntu box
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
#!/bin/bash | |
set -euo pipefail | |
echo "Running $0" | |
sudo apt update | |
sudo apt install -y build-essential | |
mkdir dev && cd dev | |
git clone https://github.com/travisdowns/concurrency-hierarchy-bench.git | |
cd concurrency-hierarchy-bench | |
make -j4 | |
RDIR=./results/g2 ./scripts/data.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment