Skip to content

Commit e725bd2

Browse files
committed
Test of preinstalled things on consoles
1 parent 50de799 commit e725bd2

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

.yamato/console-standalone-test.yml

+4-8
Original file line numberDiff line numberDiff line change
@@ -15,21 +15,17 @@ build_{{ project.name }}_{{ editor }}_{{ platform.name }}:
1515
image: {{ platform.image }}
1616
flavor: {{ platform.flavor }}
1717
commands:
18-
# Installing tools
19-
- curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
20-
- python get-pip.py
21-
- pip install unity-downloader-cli --index-url https://artifactory.prd.it.unity3d.com/artifactory/api/pypi/pypi/simple
18+
# Installing tools. unity-downloader-cli and utr is already preinstalled on the image
2219

23-
# Installing editor
24-
- unity-downloader-cli -u {{ editor }} -c Editor -c il2cpp -c {{ platform.name }} --fast --wait
20+
# - unity-downloader-cli -u {{ editor }} -c Editor -c il2cpp -c {{ platform.name }} --fast --wait
2521

2622
# Platform specific Build
2723
{% if platform.base == "win" %}
28-
- curl -s https://artifactory.prd.it.unity3d.com/artifactory/unity-tools-local/utr-standalone/utr.bat --output utr.bat
24+
# - curl -s https://artifactory.prd.it.unity3d.com/artifactory/unity-tools-local/utr-standalone/utr.bat --output utr.bat
2925
- python .yamato/disable-burst-if-requested.py --project-path {{ project.path }} --platform {{ platform.name }}
3026
- utr.bat --artifacts_path=build/logs --testproject={{ project.path }} architecture={% if platform.name == "switch" %}arm64{% else %}x64{% endif %} --editor-location=.Editor --reruncount=1 --clean-library-on-rerun --suite=playmode --platform={{ platform.standalone }} --build-only --player-save-path=build/players --extra-editor-arg=-batchmode --extra-editor-arg=-nographics --testCategory=!Performance --scripting-backend=il2cpp
3127
{% else %}
32-
- curl -s https://artifactory.prd.it.unity3d.com/artifactory/unity-tools-local/utr-standalone/utr --output utr
28+
# - curl -s https://artifactory.prd.it.unity3d.com/artifactory/unity-tools-local/utr-standalone/utr --output utr
3329
- chmod +x ./utr
3430
- ./utr --artifacts_path=artifacts --testproject={{ project.path }} architecture={% if platform.name == "switch" %}arm64{% else %}x64{% endif %} --editor-location=.Editor --reruncount=1 --clean-library-on-rerun --suite=playmode --platform={{ platform.standalone }} --build-only --player-save-path=build/players --extra-editor-arg=-batchmode --extra-editor-arg=-nographics --testcategory=!Performance --scripting-backend=il2cpp
3531
{% endif %}

0 commit comments

Comments
 (0)