Beispiel #1
0
def instances_login_cmd(args):
    instance = pick_instance(args)
    run_remote_shell(args, instance)
Beispiel #2
0
def admin_cmd(args):
    run_remote_shell(args, AdminInstance.instance())
Beispiel #3
0
def builder_login_cmd(args):
    instance = BuilderInstance.instance()
    run_remote_shell(args, instance)
Beispiel #4
0
def instances_login(cfg: Config):
    """Log in to one of the instances."""
    instance = pick_instance(cfg)
    run_remote_shell(instance)
Beispiel #5
0
def conan_login_cmd(args):
    instance = ConanInstance.instance()
    run_remote_shell(args, instance)
Beispiel #6
0
def runner_login():
    """Log in to the runner machine."""
    instance = RunnerInstance.instance()
    run_remote_shell(instance)
Beispiel #7
0
def builder_login():
    """Log in to the builder machine."""
    instance = BuilderInstance.instance()
    run_remote_shell(instance)
Beispiel #8
0
def conan_login():
    """Log in to the conan instance."""
    instance = ConanInstance.instance()
    run_remote_shell(instance)