summary refs log tree commit diff
path: root/fleet/test
blob: 06f81c644d08c881f47f415e21d8e055db6009af (plain)
1
2
3
4
5
6
7
8
9
10
#! /usr/bin/env bash
# SPDX-FileCopyrightText: V <v@unfathomable.blue>
# SPDX-License-Identifier: OSL-3.0
set -euo pipefail

git add . && git commit -m WIP
for host in kaikou vityaz trieste; do
    target=root@$host.unfathomable.blue
    git push -f $target:/etc/nixos trunk && ssh $target nixos-rebuild test --show-trace --keep-going
done