Add yamato configuration.
This commit is contained in:
Родитель
7ff25c8068
Коммит
aa479ac143
|
@ -0,0 +1,80 @@
|
|||
test_editors:
|
||||
- version: 2019.1
|
||||
test_platforms:
|
||||
- name: win
|
||||
type: Unity::VM
|
||||
image: package-ci/win10:stable
|
||||
flavor: b1.large
|
||||
---
|
||||
{% for editor in 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@latest -g --registry https://artifactory.prd.cds.internal.unity3d.com/artifactory/api/npm/upm-npm
|
||||
- upm-ci package test --package-path ./com.unity.uiwidgets --unity-version {{ editor.version }}
|
||||
artifacts:
|
||||
logs:
|
||||
paths:
|
||||
- "upm-ci~/test-results/**/*"
|
||||
dependencies:
|
||||
- .yamato/upm-ci.yml#pack
|
||||
{% endfor %}
|
||||
{% endfor %}
|
||||
|
||||
promotion_test_trigger:
|
||||
name: Promotion Tests Trigger
|
||||
agent:
|
||||
type: Unity::VM
|
||||
image: package-ci/win10:stable
|
||||
flavor: b1.large
|
||||
commands:
|
||||
- dir
|
||||
artifacts:
|
||||
logs:
|
||||
paths:
|
||||
- "upm-ci~/test-results/**/*"
|
||||
packages:
|
||||
paths:
|
||||
- "upm-ci~/packages/**/*"
|
||||
dependencies:
|
||||
- .yamato/upm-ci.yml#pack
|
||||
{% for editor in test_editors %}
|
||||
{% for platform in test_platforms %}
|
||||
- .yamato/promotion.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@latest -g --registry https://artifactory.prd.cds.internal.unity3d.com/artifactory/api/npm/upm-npm
|
||||
- upm-ci package promote --package-path ./com.unity.uiwidgets
|
||||
triggers:
|
||||
tags:
|
||||
only:
|
||||
- /^v\d+.\d+.\d+(-preview(.\d+)?)?$/
|
||||
artifacts:
|
||||
artifacts:
|
||||
paths:
|
||||
- "upm-ci~/packages/*.tgz"
|
||||
dependencies:
|
||||
- .yamato/upm-ci.yml#pack
|
||||
- .yamato/upm-ci.yml#publish
|
||||
{% for editor in test_editors %}
|
||||
{% for platform in test_platforms %}
|
||||
- .yamato/promotion.yml#promotion_test_{{ platform.name }}_{{ editor.version }}
|
||||
{% endfor %}
|
||||
{% endfor %}
|
|
@ -0,0 +1,102 @@
|
|||
test_editors:
|
||||
- version: 2019.1
|
||||
- version: 2019.2
|
||||
- version: 2019.4
|
||||
test_platforms:
|
||||
- name: win
|
||||
type: Unity::VM
|
||||
image: package-ci/win10:stable
|
||||
flavor: b1.large
|
||||
- name: mac
|
||||
type: Unity::VM::osx
|
||||
image: package-ci/mac:stable
|
||||
flavor: m1.mac
|
||||
---
|
||||
pack:
|
||||
name: Pack
|
||||
agent:
|
||||
type: Unity::VM
|
||||
image: package-ci/win10:stable
|
||||
flavor: b1.large
|
||||
commands:
|
||||
- npm install upm-ci-utils@stable -g --registry https://artifactory.prd.cds.internal.unity3d.com/artifactory/api/npm/upm-npm
|
||||
- upm-ci package pack --package-path ./com.unity.uiwidgets
|
||||
artifacts:
|
||||
packages:
|
||||
paths:
|
||||
- "upm-ci~/**/*"
|
||||
|
||||
{% for editor in test_editors %}
|
||||
{% for platform in test_platforms %}
|
||||
test_{{ platform.name }}_{{ editor.version }}:
|
||||
name : Test {{ editor.version }} on {{ platform.name }}
|
||||
agent:
|
||||
type: {{ platform.type }}
|
||||
image: {{ platform.image }}
|
||||
flavor: {{ platform.flavor}}
|
||||
commands:
|
||||
- npm install upm-ci-utils@stable -g --registry https://artifactory.prd.cds.internal.unity3d.com/artifactory/api/npm/upm-npm
|
||||
- upm-ci package test --package-path ./com.unity.uiwidgets --unity-version {{ editor.version }}
|
||||
artifacts:
|
||||
logs:
|
||||
paths:
|
||||
- "upm-ci~/test-results/**/*"
|
||||
packages:
|
||||
paths:
|
||||
- "upm-ci~/packages/**/*"
|
||||
dependencies:
|
||||
- .yamato/upm-ci.yml#pack
|
||||
{% endfor %}
|
||||
{% endfor %}
|
||||
|
||||
test_trigger:
|
||||
name: Tests Trigger
|
||||
agent:
|
||||
type: Unity::VM
|
||||
image: package-ci/win10:stable
|
||||
flavor: b1.large
|
||||
commands:
|
||||
- dir
|
||||
triggers:
|
||||
branches:
|
||||
only:
|
||||
- "/.*/"
|
||||
artifacts:
|
||||
logs:
|
||||
paths:
|
||||
- "upm-ci~/test-results/**/*"
|
||||
packages:
|
||||
paths:
|
||||
- "upm-ci~/packages/**/*"
|
||||
dependencies:
|
||||
- .yamato/upm-ci.yml#pack
|
||||
{% for editor in test_editors %}
|
||||
{% for platform in test_platforms %}
|
||||
- .yamato/upm-ci.yml#test_{{platform.name}}_{{editor.version}}
|
||||
{% endfor %}
|
||||
{% endfor %}
|
||||
|
||||
publish:
|
||||
name: Publish to Internal Registry
|
||||
agent:
|
||||
type: Unity::VM
|
||||
image: package-ci/win10:stable
|
||||
flavor: b1.large
|
||||
commands:
|
||||
- npm install upm-ci-utils@stable -g --registry https://artifactory.prd.cds.internal.unity3d.com/artifactory/api/npm/upm-npm
|
||||
- upm-ci package publish --package-path ./com.unity.uiwidgets
|
||||
triggers:
|
||||
tags:
|
||||
only:
|
||||
- /^(r|R)(c|C)-\d+\.\d+\.\d+(-preview(\.\d+)?)?$/
|
||||
artifacts:
|
||||
artifacts:
|
||||
paths:
|
||||
- "upm-ci~/packages/*.tgz"
|
||||
dependencies:
|
||||
- .yamato/upm-ci.yml#pack
|
||||
{% for editor in test_editors %}
|
||||
{% for platform in test_platforms %}
|
||||
- .yamato/upm-ci.yml#test_{{ platform.name }}_{{ editor.version }}
|
||||
{% endfor %}
|
||||
{% endfor %}
|
Загрузка…
Ссылка в новой задаче