You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.2 KiB
YAML
30 lines
1.2 KiB
YAML
{% metadata_file .yamato/project.metafile %}
|
|
---
|
|
|
|
# For every platform and editor version, run its project tests without
|
|
# running package tests too since they are handled on their respective
|
|
# jobs
|
|
{% for project in projects -%}
|
|
{% for editor in project.test_editors -%}
|
|
{% for platform in test_platforms -%}
|
|
test_{{ project.name }}_{{ editor }}_{{ platform.name }}:
|
|
name : {{ project.name }} project tests - {{ editor }} 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
|
|
- pip install unity-downloader-cli --index-url https://artifactory.prd.it.unity3d.com/artifactory/api/pypi/pypi/simple
|
|
- unity-downloader-cli -u {{ editor }} -c editor -w --fast
|
|
- upm-ci project test -u {{ editor }} --project-path {{ project.path }} --type project-tests --extra-utr-arg=--testfilter=Unity.BossRoom.Tests.Runtime
|
|
artifacts:
|
|
logs:
|
|
paths:
|
|
- "upm-ci~/test-results/**/*"
|
|
dependencies:
|
|
- .yamato/project-pack.yml#pack_{{ project.name }}
|
|
{% endfor -%}
|
|
{% endfor -%}
|
|
{% endfor -%}
|