您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
104 行
5.3 KiB
104 行
5.3 KiB
{% metadata_file .yamato/environments.yml %}
|
|
|
|
---
|
|
|
|
{% for suite in suites %}
|
|
{% for project in projects %}
|
|
{{project.name}}_windows_{{suite.name}}_{{project.editor_version}}:
|
|
name : {{project.name}} {{ suite.display_name }} tests ({{ project.editor_version }}, Windows)
|
|
agent:
|
|
type: Unity::VM
|
|
image: package-ci/win10:stable
|
|
flavor: b1.large
|
|
commands:
|
|
- git submodule update --init --recursive
|
|
- git clone git@github.cds.internal.unity3d.com:unity/utr.git utr
|
|
- pip install unity-downloader-cli --index-url https://artifactory.prd.it.unity3d.com/artifactory/api/pypi/pypi/simple --upgrade
|
|
- unity-downloader-cli -u {{ project.editor_version }} -c editor -c StandaloneSupport-IL2CPP -c Linux --wait --published
|
|
{% if suite.name == "standalone" %}
|
|
- utr/utr --testproject=./TestProjects/{{project.name}} --editor-location=./.Editor --artifacts_path=test-results --stdout-filter=minimal --extra-editor-arg="--force-d3d11" {{suite.args}}StandaloneWindows64
|
|
{% else %}
|
|
- utr/utr --testproject=./TestProjects/{{project.name}} --editor-location=./.Editor --artifacts_path=test-results --stdout-filter=minimal --extra-editor-arg="--force-d3d11" {{suite.args}}
|
|
{% endif %}
|
|
artifacts:
|
|
logs:
|
|
paths:
|
|
- "test-results/**/*"
|
|
|
|
{% endfor %}
|
|
{% endfor %}
|
|
|
|
|
|
{% for suite in suites %}
|
|
{% for project in projects %}
|
|
codecoverage_windows_{{suite.name}}_{{project.name}}:
|
|
name : CodeCoverage {{ suite.display_name }} tests ({{ project.editor_version }}, Windows)
|
|
agent:
|
|
type: Unity::VM
|
|
image: package-ci/win10:stable
|
|
flavor: b1.large
|
|
commands:
|
|
- git submodule update --init --recursive
|
|
- unity-downloader-cli -u {{ project.editor_version }} -c editor -c StandaloneSupport-IL2CPP -c Linux --wait --published
|
|
- .\.Editor\Unity.exe -projectPath ./TestProjects/{{project.name}} -testPlatform editmode -runTests -automated -testResults test-results -debugCodeOptimization -enableCodeCoverage -coverageResultsPath test-results -coverageOptions enableCyclomaticComplexity;generateHtmlReport;generateBadgeReport; assemblyFilters:Unity.Perception.Editor;Unity.Perception.Runtime;Unity.Perception.Sensors;
|
|
- .\.Editor\Unity.exe -projectPath ./TestProjects/{{project.name}} -testPlatform playmode -runTests -automated -testResults test-results -debugCodeOptimization -enableCodeCoverage -coverageResultsPath test-results -coverageOptions enableCyclomaticComplexity;generateHtmlReport;generateBadgeReport; assemblyFilters:Unity.Perception.Editor;Unity.Perception.Runtime;Unity.Perception.Sensors;
|
|
# - .\.Editor\Unity.exe -projectPath ./TestProjects/PerceptionHDRP -debugCodeOptimization -enableCodeCoverage -coverageResultsPath test-results -coverageOptions enableCyclomaticComplexity;generateHtmlReport;generateBadgeReport;
|
|
artifacts:
|
|
logs:
|
|
paths:
|
|
- "test-results/**/*"
|
|
- "TestProjects/{{project.name}}/test-results/**/*"
|
|
dependencies:
|
|
- .yamato/upm-ci-full.yml#pack_Perception
|
|
{% endfor %}
|
|
{% endfor %}
|
|
|
|
|
|
{% for suite in suites %}
|
|
{% for project in projects %}
|
|
{{project.name}}_linux_{{suite.name}}_{{project.editor_version}}:
|
|
name : {{project.name}} {{ suite.display_name }} tests ({{ project.editor_version }}, Linux)
|
|
agent:
|
|
type: Unity::VM::GPU
|
|
image: cds-ops/ubuntu-18.04-base:latest
|
|
flavor: b1.large
|
|
variables:
|
|
PATH: /root/.local/bin:/home/bokken/bin:/home/bokken/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/sbin:/home/bokken/.npm-global/bin
|
|
commands:
|
|
- git submodule update --init --recursive
|
|
- pip install unity-downloader-cli --index-url https://artifactory.prd.it.unity3d.com/artifactory/api/pypi/pypi/simple --upgrade --user
|
|
- git clone git@github.cds.internal.unity3d.com:unity/utr.git utr
|
|
- unity-downloader-cli -u {{ project.editor_version }} -c editor -c StandaloneSupport-IL2CPP -c Linux --wait --published
|
|
{% if suite.name == "standalone" %}
|
|
- DISPLAY=:0.0 utr/utr --testproject=./TestProjects/{{project.name}} --editor-location=.Editor --artifacts_path=test-results --stdout-filter=minimal --extra-editor-arg="--force-vulkan" {{suite.args}}StandaloneLinux64
|
|
{% else %}
|
|
- DISPLAY=:0.0 utr/utr --testproject=./TestProjects/{{project.name}} --editor-location=.Editor --artifacts_path=test-results --stdout-filter=minimal --extra-editor-arg="--force-vulkan" {{suite.args}}
|
|
{% endif %}
|
|
artifacts:
|
|
logs:
|
|
paths:
|
|
- "test-results/**/*"
|
|
{% endfor %}
|
|
{% endfor %}
|
|
|
|
# Not including OSX because the only OSX platform on Bokken with a GPU is a Mac Mini, of which there are only a few and setting up Yamato jobs is very complicated.
|
|
|
|
# {% for variant in package_variants %}
|
|
# {% for editor in complete_editors %}
|
|
# code_coverage_win_{{editor.version}}:
|
|
# name: Code Coverage Report - Windows
|
|
# 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 test --unity-version {{editor.version}} --enable-code-coverage --code-coverage-options 'enableCyclomaticComplexity;generateHtmlReport'
|
|
# artifacts:
|
|
# logs:
|
|
# paths:
|
|
# - "upm-ci~/test-results/**/*"
|
|
# dependencies:
|
|
# - .yamato/upm-ci-full.yml#pack_{{ variant.name }}
|
|
# {% endfor %}
|
|
# {% endfor %}
|