diff options
author | Aria Shrimpton <me@aria.rip> | 2024-02-06 09:20:00 +0000 |
---|---|---|
committer | Aria Shrimpton <me@aria.rip> | 2024-02-06 09:20:00 +0000 |
commit | c7d0ecf281debdaaf63989d7385ae5f0990256e8 (patch) | |
tree | 873debb1d3c0bf2160c989244256fa5ad589d761 /.gitlab-ci.yml | |
parent | 3b7919007fa70ec28dfed911d4cc15e9eea372b8 (diff) |
ci: force allocate tty
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a3e9af6..1099a53 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -13,5 +13,5 @@ run-tests: - chmod 700 ~/.ssh - cp "$SSH_KNOWN_HOSTS" ~/.ssh/known_hosts script: - - ssh $SSH_LOCATION "bash -lc 'cd /opt/candelabra && git pull && nixos-rebuild switch --fast --flake .#default'" - - ssh $SSH_LOCATION "bash -lc 'cd /opt/candelabra/src && just run-all-tests'" + - ssh -t $SSH_LOCATION "bash -lc 'cd /opt/candelabra && git pull && nixos-rebuild switch --fast --flake .#default'" + - ssh -t $SSH_LOCATION "bash -lc 'cd /opt/candelabra/src && just run-all-tests'" |