diff options
author | Antoine Eiche <lewo@abesis.fr> | 2022-02-20 10:11:05 +0100 |
---|---|---|
committer | lewo <lewo@abesis.fr> | 2022-02-24 20:49:27 +0000 |
commit | 11ad4742aa3c79443d7453fb139d5a3dad4cabfa (patch) | |
tree | f82e8dce1c7e0453def69773e0802845092a1879 | |
parent | 665aa181e6a629482f85df46c58a2cc6e3998ded (diff) |
Fix CI job because of Nix new CLI optionsfix-ci
-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 b74daa0..6c386e4 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -3,11 +3,11 @@ hydra-pr: - merge_requests image: nixos/nix script: - - nix run -f channel:nixos-unstable hydra-cli -c hydra-cli -H https://hydra.nix-community.org jobset-wait simple-nixos-mailserver ${CI_MERGE_REQUEST_IID} + - nix run -f channel:nixos-unstable hydra-cli -- -H https://hydra.nix-community.org jobset-wait simple-nixos-mailserver ${CI_MERGE_REQUEST_IID} hydra-master: only: - master image: nixos/nix script: - - nix run -f channel:nixos-unstable hydra-cli -c hydra-cli -H https://hydra.nix-community.org jobset-wait simple-nixos-mailserver master + - nix run -f channel:nixos-unstable hydra-cli -- -H https://hydra.nix-community.org jobset-wait simple-nixos-mailserver master |