123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- {% metadata_file .yamato/project.metafile %}
- ---
- {% for editor in blocking_test_editors %}
- {% for platform in test_platforms %}
- promotion_test_{{ platform.name }}_{{ editor.version }}:
- name : Promotion Test {{ editor.version }} on {{ platform.name }}
- agent:
- type: {{ platform.type }}
- image: {{ platform.image }}
- flavor: {{ platform.flavor}}
- variables:
- UPMCI_PROMOTION: 1
- commands:
- - npm install upm-ci-utils@stable -g --registry {{ urls.upm }}
- - upm-ci package test --unity-version {{ editor.version }} --package-path .
- artifacts:
- logs:
- paths:
- - "upm-ci~/test-results/**/*"
- dependencies:
- - .yamato/pack.yml#pack
- {% endfor %}
- {% endfor %}
- promotion_test_trigger:
- name: Promotion Tests Trigger
- dependencies:
- {% for editor in blocking_test_editors %}
- {% for platform in test_platforms %}
- - .yamato/promote.yml#promotion_test_{{platform.name}}_{{editor.version}}
- {% endfor %}
- {% endfor %}
- promote:
- name: Promote to Production
- agent:
- type: Unity::VM
- image: package-ci/win10:stable
- flavor: b1.large
- variables:
- UPMCI_PROMOTION: 1
- commands:
- - npm install upm-ci-utils@stable -g --registry {{ urls.upm }}
- - upm-ci package promote --package-path .
- triggers:
- tags:
- only:
- - /^(r|R)elease-\d+\.\d+\.\d+(-preview(\.\d+)?)?$/
- artifacts:
- artifacts:
- paths:
- - "upm-ci~/packages/*.tgz"
- dependencies:
- - .yamato/pack.yml#pack
- {% for editor in blocking_test_editors %}
- {% for platform in test_platforms %}
- - .yamato/promote.yml#promotion_test_{{ platform.name }}_{{ editor.version }}
- {% endfor %}
- {% endfor %}
|