File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -39,6 +39,9 @@ desktop_standalone_build_{{ project.name }}_{{ platform.name }}_{{ backend }}_{{
3939 type : {% if platform.name == "mac" %} {{ platform.type }} {% else %} {{ platform.type }}::GPU {% endif %}
4040 image : {{ platform.image }}
4141 flavor : {{ platform.flavor }}
42+ {% if platform.model %}
43+ model : {{ platform.model }} # This is set only in platforms where we want non-default model to use (more information in project.metafile)
44+ {% endif %}
4245 commands :
4346 - unity-downloader-cli -u {{ editor }} -c Editor {% if backend == "il2cpp" %} -c il2cpp {% endif %} --wait
4447 - UnifiedTestRunner --suite=playmode --platform={{ platform.standalone }} --editor-location=.Editor --testproject={{ project.path }} --scripting-backend={{ backend }} --testfilter="Unity.Netcode.RuntimeTests.*" --player-save-path=build/players --artifacts-path=artifacts --extra-editor-arg=-batchmode --extra-editor-arg=-nographics --reruncount=1 --clean-library-on-rerun --build-only --timeout=1800
@@ -70,6 +73,9 @@ desktop_standalone_test_{{ project.name }}_{{ platform.name }}_{{ backend }}_{{
7073 type : {% if platform.name == "mac" %} {{ platform.type }} {% else %} {{ platform.type }}::GPU {% endif %}
7174 image : {{ platform.image }}
7275 flavor : {{ platform.flavor }}
76+ {% if platform.model %}
77+ model : {{ platform.model }} # This is set only in platforms where we want non-default model to use (more information in project.metafile)
78+ {% endif %}
7379 commands :
7480 - unity-downloader-cli -u {{ editor }} -c Editor {% if backend == "il2cpp" %} -c il2cpp {% endif %} --wait
7581 - UnifiedTestRunner --suite=playmode --player-load-path=build/players --artifacts-path=test-results --testproject={{ project.path }} --editor-location=.Editor --playergraphicsapi=Null --fail-on-assert --reruncount=1 --clean-library-on-rerun --timeout=1800
Original file line number Diff line number Diff line change @@ -58,6 +58,7 @@ test_platforms:
5858 image: package-ci/macos-13:v4
5959 flavor: m1.mac
6060 standalone: StandaloneOSX
61+ model: M1 # The default model (an x64 Intel Mac VM) quite often caused a known issue of doing all the bitflips in packages resulting in failures
6162 # For mobile devices there is a split between the build and run phase so there is a need of splitting specification for both
6263 # TODO: For android we could consider adding ARM64 configuration
6364 mobile_build:
You can’t perform that action at this time.
0 commit comments