|
@@ -11,11 +11,11 @@ def start(args):
|
|
if os.name == 'nt':
|
|
if os.name == 'nt':
|
|
env = os.environ.copy()
|
|
env = os.environ.copy()
|
|
env["GOPATH"] = "C:\\FrameworkBenchmarks\\" + CWD
|
|
env["GOPATH"] = "C:\\FrameworkBenchmarks\\" + CWD
|
|
- subprocess.call("go get -u github.com/robfig/revel/revel", shell=True, cwd=CWD, env=env)
|
|
|
|
|
|
+ subprocess.call("go get -u github.com/robfig/revel/revel github.com/eaigner/jet", shell=True, cwd=CWD, env=env)
|
|
subprocess.call(r"go build -o bin\revel.exe github.com/robfig/revel/revel", shell=True, cwd=CWD, env=env)
|
|
subprocess.call(r"go build -o bin\revel.exe github.com/robfig/revel/revel", shell=True, cwd=CWD, env=env)
|
|
subprocess.Popen(r"bin\revel.exe run benchmark prod".rsplit(" "), shell=True, cwd=CWD, env=env)
|
|
subprocess.Popen(r"bin\revel.exe run benchmark prod".rsplit(" "), shell=True, cwd=CWD, env=env)
|
|
return 0
|
|
return 0
|
|
- subprocess.call("go get -u github.com/robfig/revel/revel", shell=True, cwd=CWD)
|
|
|
|
|
|
+ subprocess.call("go get -u github.com/robfig/revel/revel github.com/eaigner/jet", shell=True, cwd=CWD)
|
|
subprocess.call("go build -o bin/revel github.com/robfig/revel/revel", shell=True, cwd=CWD)
|
|
subprocess.call("go build -o bin/revel github.com/robfig/revel/revel", shell=True, cwd=CWD)
|
|
subprocess.Popen("bin/revel run benchmark prod".rsplit(" "), cwd=CWD)
|
|
subprocess.Popen("bin/revel run benchmark prod".rsplit(" "), cwd=CWD)
|
|
return 0
|
|
return 0
|