比较提交

...
此合并请求有变更与目标分支冲突。
/.yamato/environments.yml
/.yamato/upm-ci-testprojects.yml

4 次代码提交

作者 SHA1 备注 提交日期
Priyesh Wani 1ea16f33 Adding condition for adding cloudrendering tests 3 年前
Priyesh Wani c5aeb16e Adding -c arg 3 年前
Priyesh Wani 89c184d7 adding 2020.3 environment 3 年前
Priyesh Wani 447da462 Adding configuration to run tests on cloudrendering 3 年前
共有 2 个文件被更改,包括 8 次插入2 次删除
  1. 4
      .yamato/environments.yml
  2. 6
      .yamato/upm-ci-testprojects.yml

4
.yamato/environments.yml


complete_editors:
- version: 2019.4.18f1
- version: 2020.3.13f1
# - version: 2020.1.15f1
# - version: 2020.2.0a21

suites:
- name: standalone
display_name: standalone
args: --suite=playmode --platform=
- name: cloudrendering
display_name: cloudrendering
args: --suite=playmode --platform=
- name: editmode
display_name: editmode

6
.yamato/upm-ci-testprojects.yml


- unity-downloader-cli -u {{ editor.version }} -c editor -c StandaloneSupport-IL2CPP -c Linux --wait --published
{% if suite.name == "standalone" %}
- utr/utr --testproject=./TestProjects/{{project.name}} --editor-location=./.Editor --reruncount=2 --artifacts_path=test-results --stdout-filter=minimal --extra-editor-arg="--force-d3d11" {{suite.args}}StandaloneWindows64
{% else %}
{% else if suite.name != "cloudrendering" %}
- utr/utr --testproject=./TestProjects/{{project.name}} --editor-location=./.Editor --reruncount=2 --artifacts_path=test-results --stdout-filter=minimal --extra-editor-arg="--force-d3d11" {{suite.args}}
{% endif %}
artifacts:

- pip config set global.index-url https://artifactory.prd.it.unity3d.com/artifactory/api/pypi/pypi/simple
- 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 {{ editor.version }} -c editor -c StandaloneSupport-IL2CPP -c Linux --wait --published
- unity-downloader-cli -u {{ editor.version }} -c editor -c StandaloneSupport-IL2CPP -c CloudRendering -c Linux --wait --published
{% else if suite.name == "cloudrendering" and editor == "2020.3.13f1" %}
- DISPLAY=:0.0 utr/utr --testproject=./TestProjects/{{project.name}} --editor-location=.Editor --reruncount=2 --artifacts_path=test-results --stdout-filter=minimal --extra-editor-arg="--force-vulkan" {{suite.args}}CloudRendering
{% else %}
- DISPLAY=:0.0 utr/utr --testproject=./TestProjects/{{project.name}} --editor-location=.Editor --reruncount=2 --artifacts_path=test-results --stdout-filter=minimal --extra-editor-arg="--force-vulkan" {{suite.args}}
{% endif %}

正在加载...
取消
保存