Skip to content

Instantly share code, notes, and snippets.

@travisdowns
Last active July 6, 2020 23:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save travisdowns/83b8d427e8477b38ef1fa6f99c540caa to your computer and use it in GitHub Desktop.
Save travisdowns/83b8d427e8477b38ef1fa6f99c540caa to your computer and use it in GitHub Desktop.
set up ec2 ubuntu box
#!/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