You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
348 B

  1. ---
  2. - name: "Include custom vars for ci job: {{ ci_job_name }}"
  3. include_vars: "../files/{{ ci_job_name }}.yml"
  4. - name: Cleamup old VMs
  5. import_tasks: cleanup-old-vms.yml
  6. - name: Create VMs
  7. import_tasks: create-vms.yml
  8. when:
  9. - not vm_cleanup
  10. - name: Delete VMs
  11. import_tasks: delete-vms.yml
  12. when:
  13. - vm_cleanup | default(false)