zuul-jobs/test-playbooks/haskell/setup-stack-project.yaml
Sorin Sbarnea 5c263fb437 test-playbooks: avoid warnings with shell/command
Avoids runtime warnings from use of Ansible shell/command module when
executed commands also have ansible modules.

Change-Id: I4e415cbd34f0f4cb15857051bf95458e0316de86
2020-06-04 18:54:37 +01:00

10 lines
219 B
YAML

- hosts: all
tasks:
- name: Setup file
command: stack new new-project
- name: Copy file over zuul-jobs
command: rsync -a new-project/ "{{ zuul.project.src_dir }}/"
args:
warn: false