feat(installer): build worker source over SSH
Все проверки выполнены успешно
CI / test (push) Successful in 3m13s
Docker / Build and publish worker image (push) Successful in 10m35s

Этот коммит содержится в:
Gleb Tv
2026-08-13 00:07:43 +03:00
родитель 4651deb280
Коммит bd6070ee1f
18 изменённых файлов: 2194 добавлений и 96 удалений

Просмотреть файл

@@ -18,6 +18,15 @@ func TestDispatchManagementCommand(t *testing.T) {
if handled, code := dispatchManagementCommand([]string{"install", "--help"}); !handled || code != 0 {
t.Fatalf("install help = handled %t code %d", handled, code)
}
if handled, code := dispatchManagementCommand([]string{"deploy", "--help"}); !handled || code != 0 {
t.Fatalf("deploy help = handled %t code %d", handled, code)
}
if handled, code := dispatchManagementCommand([]string{"source-install", "--help"}); !handled || code != 0 {
t.Fatalf("source-install help = handled %t code %d", handled, code)
}
if handled, code := dispatchManagementCommand([]string{"source-install", "--identity-file", t.TempDir() + "/missing"}); !handled || code == 0 {
t.Fatalf("source-install without host/user = handled %t code %d", handled, code)
}
}
func TestSecretValue(t *testing.T) {