File tree 1 file changed +4
-8
lines changed
1 file changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -15,21 +15,17 @@ build_{{ project.name }}_{{ editor }}_{{ platform.name }}:
15
15
image : {{ platform.image }}
16
16
flavor : {{ platform.flavor }}
17
17
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
22
19
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
25
21
26
22
# Platform specific Build
27
23
{% 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
29
25
- python .yamato/disable-burst-if-requested.py --project-path {{ project.path }} --platform {{ platform.name }}
30
26
- 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
31
27
{% 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
33
29
- chmod +x ./utr
34
30
- ./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
35
31
{% endif %}
You can’t perform that action at this time.
0 commit comments