diff options
author | Aria Shrimpton <me@aria.rip> | 2024-02-06 09:33:27 +0000 |
---|---|---|
committer | Aria Shrimpton <me@aria.rip> | 2024-02-06 09:33:27 +0000 |
commit | 6db5173f2eba598e1627fdaedb5083c854bd9dfa (patch) | |
tree | dcc94f6b2d9639fa3ea5ffabdd7bdeda04bd8afa | |
parent | 0ba7da297aba52dc953a7cb7e2aeb566b87ec3b5 (diff) |
remove useless tty allocation flag
-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 1ef6877..8c337d9 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 -t $SSH_LOCATION "bash -lc 'cd /opt/candelabra && git pull && NIXOS_SWITCH_USE_DIRTY_ENV=1 nixos-rebuild switch --fast --flake .#default'" - - ssh -t $SSH_LOCATION "bash -lc 'cd /opt/candelabra/src && just run-all-tests'" + - ssh $SSH_LOCATION "bash -lc 'cd /opt/candelabra && git pull && NIXOS_SWITCH_USE_DIRTY_ENV=1 nixos-rebuild switch --fast --flake .#default'" + - ssh $SSH_LOCATION "bash -lc 'cd /opt/candelabra/src && just run-all-tests'" |