コード例 #1
0
ファイル: ce.py プロジェクト: emekoi/compiler-explorer-image
def instances_login_cmd(args):
    instance = pick_instance(args)
    run_remote_shell(args, instance)
コード例 #2
0
ファイル: ce.py プロジェクト: emekoi/compiler-explorer-image
def admin_cmd(args):
    run_remote_shell(args, AdminInstance.instance())
コード例 #3
0
ファイル: ce.py プロジェクト: emekoi/compiler-explorer-image
def builder_login_cmd(args):
    instance = BuilderInstance.instance()
    run_remote_shell(args, instance)
コード例 #4
0
def instances_login(cfg: Config):
    """Log in to one of the instances."""
    instance = pick_instance(cfg)
    run_remote_shell(instance)
コード例 #5
0
ファイル: ce.py プロジェクト: iCodeIN/infra
def conan_login_cmd(args):
    instance = ConanInstance.instance()
    run_remote_shell(args, instance)
コード例 #6
0
def runner_login():
    """Log in to the runner machine."""
    instance = RunnerInstance.instance()
    run_remote_shell(instance)
コード例 #7
0
ファイル: builder.py プロジェクト: ojeda/infra
def builder_login():
    """Log in to the builder machine."""
    instance = BuilderInstance.instance()
    run_remote_shell(instance)
コード例 #8
0
ファイル: conan.py プロジェクト: ojeda/infra
def conan_login():
    """Log in to the conan instance."""
    instance = ConanInstance.instance()
    run_remote_shell(instance)