|
|
|
|
@ -3,7 +3,7 @@ import sys
|
|
|
|
|
import subprocess
|
|
|
|
|
import traceback
|
|
|
|
|
|
|
|
|
|
TARGET_LANGUAGE = set(["python", "cpp", "go", "node", "rust"])
|
|
|
|
|
TARGET_LANGUAGE = set(["python", "cpp", "go", "rust"])
|
|
|
|
|
PROJECT_PATH = "/home/rocker/project"
|
|
|
|
|
|
|
|
|
|
def go_handler():
|
|
|
|
|
@ -69,6 +69,8 @@ def main():
|
|
|
|
|
elif language == "rust":
|
|
|
|
|
err, main_path = rust_handler()
|
|
|
|
|
cmd.extend([main_path])
|
|
|
|
|
elif language == "javascript":
|
|
|
|
|
node_handler()
|
|
|
|
|
else:
|
|
|
|
|
...
|
|
|
|
|
|
|
|
|
|
|