您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
41 行
1.5 KiB
41 行
1.5 KiB
test_editors:
|
|
- version: 2019.3
|
|
- version: 2020.3
|
|
---
|
|
{% for editor in test_editors %}
|
|
test_mac_standalone_{{ editor.version }}:
|
|
name: Test Mac Standalone {{ editor.version }}
|
|
agent:
|
|
type: Unity::VM::osx
|
|
image: package-ci/mac:stable
|
|
flavor: i1.small
|
|
variables:
|
|
UNITY_VERSION: {{ editor.version }}
|
|
commands:
|
|
- python3 -m pip install pyyaml --index-url https://artifactory.prd.it.unity3d.com/artifactory/api/pypi/pypi/simple
|
|
- python3 -m pip install unity-downloader-cli --index-url https://artifactory.prd.it.unity3d.com/artifactory/api/pypi/pypi/simple --upgrade
|
|
- unity-downloader-cli -u {{ editor.version }} -c editor --wait --fast
|
|
|
|
- python3 -u -m ml-agents.tests.yamato.standalone_build_tests
|
|
- python3 -u -m ml-agents.tests.yamato.standalone_build_tests --scene=Assets/ML-Agents/Examples/Basic/Scenes/Basic.unity
|
|
- python3 -u -m ml-agents.tests.yamato.standalone_build_tests --scene=Assets/ML-Agents/Examples/Bouncer/Scenes/Bouncer.unity
|
|
- python3 -u -m ml-agents.tests.yamato.standalone_build_tests --scene=Assets/ML-Agents/Examples/WallJump/Scenes/WallJump.unity
|
|
triggers:
|
|
cancel_old_ci: true
|
|
changes:
|
|
only:
|
|
- "com.unity.ml-agents/**"
|
|
- "Project/**"
|
|
- ".yamato/standalone-build-test.yml"
|
|
except:
|
|
- "*.md"
|
|
- "com.unity.ml-agents/*.md"
|
|
- "com.unity.ml-agents/**/*.md"
|
|
artifacts:
|
|
logs:
|
|
paths:
|
|
- "artifacts/standalone_build.txt"
|
|
standalonebuild:
|
|
paths:
|
|
- "artifacts/testPlayer*/**"
|
|
{% endfor %}
|