Skip to content
Snippets Groups Projects
main.yml 360 B
Newer Older
  • Learn to ignore specific revisions
  • Marica Antonacci's avatar
    Marica Antonacci committed
    ---
    # tasks file for paas-ci
    - name: "Check Orchestrator endpoint"
      uri:
        url: "{{ paas_ci_orchestrator_url }}"
    
    
    Marica Antonacci's avatar
    Marica Antonacci committed
    - debug:
    
        var: paas_ci_workdir  
    
    - include: 1-create-deployment.yml
    
    Marica Antonacci's avatar
    Marica Antonacci committed
      when: paas_ci_test_step == 'create_deployment'
    
    
    - include: 2-scan.yml
    
      when: paas_ci_test_step == 'scan' 
      
    
    - include: 3-clean.yml
      when: paas_ci_test_step == 'clean'