您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
34 行
987 B
34 行
987 B
{% metadata_file .yamato/environments.yml %}
|
|
|
|
---
|
|
|
|
publish:
|
|
name: Publish Perception package to internal registry
|
|
agent:
|
|
type: Unity::VM
|
|
image: package-ci/win10:stable
|
|
flavor: b1.large
|
|
commands:
|
|
- npm install upm-ci-utils@stable -g --registry {{ upmci_registry }}
|
|
- upm-ci package publish --package-path com.unity.perception
|
|
# triggers:
|
|
# tags:
|
|
# only:
|
|
# - /^(r|R)(c|C)-\d+\.\d+\.\d+(-preview(\.\d+)?)?$/
|
|
artifacts:
|
|
artifacts:
|
|
paths:
|
|
- "upm-ci~/packages/*.tgz"
|
|
dependencies:
|
|
- .yamato/upm-ci-full.yml#pack_Perception
|
|
{% for editor in complete_editors %}
|
|
{% for platform in publish_platforms %}
|
|
{% for suite in suites %}
|
|
{% for project in projects %}
|
|
- .yamato/upm-ci-full.yml#pkg_test_Perception_{{platform.name}}_{{editor.version}}
|
|
- .yamato/upm-ci-testprojects.yml#{{project.name}}_windows_{{suite.name}}_{{editor.version}}
|
|
{% endfor %}
|
|
{% endfor %}
|
|
{% endfor %}
|
|
{% endfor %}
|
|
|