diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4ad7911..586b7dd 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -34,7 +34,15 @@ Test: script: - ansible-playbook --skip-tags no-test -C site.yml --vault-password-file /vaultpw -Play: +Play_Against_Pis: stage: play script: - - ansible-playbook site.yml --vault-password-file /vaultpw + - ansible-playbook -l pis site.yml --vault-password-file /vaultpw +Play_Against_Desktops: + stage: play + script: + - ansible-playbook -l desktop site.yml --vault-password-file /vaultpw +Play_Against_Production: + stage: play + script: + - ansible-playbook -l prod site.yml --vault-password-file /vaultpw