aboutsummaryrefslogblamecommitdiff
path: root/prepare.py
blob: bcb33534c761e0a18ef3e258857d6a302ae0c53f (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16















                                            

                                      

                                         




                                            
                    




                                                    


                                      
 
                         
         
                  
                        

                                                                            
#!/usr/bin/env python3
from pathlib import Path
from scenarios.fragments import shared
import os, venv

me = Path(os.path.dirname(__file__))
print("--- git submodule ---")
shared.exec("git submodule update --init")

print("--- compile go benchmarks ---")
os.chdir(me / "benchmarks" / "warp")
shared.exec("go build")
os.chdir(me / "benchmarks" / "s3concurrent")
shared.exec("go build")
os.chdir(me / "benchmarks" / "s3lat")
shared.exec("go build")
os.chdir(me / "benchmarks" / "s3ttfb")
shared.exec("go build")
os.chdir(me / "benchmarks" / "s3billion")
shared.exec("go build")
os.chdir(me)

print("--- install python dependencies ---")
venv.create(".venv", with_pip=True)
shared.exec("""
. .venv/bin/activate
which python3
python3 -m pip install .
python3 -m pip install -r scenarios/requirements.txt
""")

print("--- download artifacts ---")
from scenarios.fragments import flavor
flavor.download()

print(f"""done! now, run:
> sudo -i
> cd {os.getcwd()}
> . ./.venv/bin/activate
> ./mknet scenario ./topo/with-vdsl.yml ./scenarios/garage-s3lat garage-v0.8
""")