From ae2b27c138cd0a3720e4a59eefb5a8a2b8a35963 Mon Sep 17 00:00:00 2001 From: Sridhar Ratnakumar Date: Sun, 26 May 2024 11:13:08 -0400 Subject: [PATCH] chore(just): improve for github-runner --- justfile | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/justfile b/justfile index fac8f13..d04839f 100644 --- a/justfile +++ b/justfile @@ -9,11 +9,21 @@ activate: fmt: treefmt +# Deploy to all remote machines +deploy: + colmena apply --build-on-target + # Deploy to github-runner VM gr-deploy: - colmena apply --build-on-target + colmena apply --build-on-target --on github-runner # Re-animate the VM that was suspended until now. gr-animate: colmena upload-keys ssh -t github-runner "sudo systemctl restart --all github-runner-*" + +gr-inspect: + ssh -t github-runner "sudo systemctl status --all github-runner-*" + +gr-ssh: + ssh -t github-runner \ No newline at end of file