Skip to content

Commit ebe12bf

Browse files
committed
linter
1 parent b6678ec commit ebe12bf

File tree

3 files changed

+15
-11
lines changed

3 files changed

+15
-11
lines changed

.yamato/desktop-standalone-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ desktop_standalone_tests_{{ project.name }}_{{ platform.name }}_{{ backend }}_{{
4848
# Run Standalone tests
4949
- |
5050
{% if platform.name == "win" %}
51-
utr.bat --suite=playmode --platform={{ platform.standalone }} --scripting-backend={{ backend }} --player-load-path=build/players --artifacts_path=build/test-results --testfilter=Unity.Netcode.RuntimeTests --playergraphicsapi=Null --reruncount=1 --clean-library-on-rerun
51+
utr.bat --suite=playmode --platform={{ platform.standalone }} --scripting-backend={{ backend }} --player-load-path=build/players --artifacts_path=build/test-results --testfilter=Unity.Netcode.RuntimeTests --playergraphicsapi=Null --reruncount=1 --clean-library-on-rerun
5252
{% else %}
53-
./utr --suite=playmode --platform={{ platform.standalone }} --scripting-backend={{ backend }} --player-load-path=build/players --artifacts_path=build/test-results --testfilter=Unity.Netcode.RuntimeTests --playergraphicsapi=Null --reruncount=1 --clean-library-on-rerun
53+
./utr --suite=playmode --platform={{ platform.standalone }} --scripting-backend={{ backend }} --player-load-path=build/players --artifacts_path=build/test-results --testfilter=Unity.Netcode.RuntimeTests --playergraphicsapi=Null --reruncount=1 --clean-library-on-rerun
5454
{% endif %}
5555

5656
artifacts:

.yamato/package-pack.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,13 @@
33

44
# Packs Netcode for GameObjects together with performing initial checks.
55
# For this job no specific platform support and no running Unity instance is required so small agent (as per project.metafile definition) will be used to save resources and speed up the process
6+
{% for platform in small_agent_platform.all -%}
67
package_pack_-_ngo:
7-
name: Package Pack (and x-ray) - NGO [{{ small_agent_platform.name }}]
8+
name: Package Pack (and x-ray) - NGO [{{ platform.name }}]
89
agent:
9-
type: {{ small_agent_platform.type }}
10-
image: {{ small_agent_platform.image }}
11-
flavor: {{ small_agent_platform.flavor }}
10+
type: {{ platform.type }}
11+
image: {{ platform.image }}
12+
flavor: {{ platform.flavor }}
1213
timeout: 0.25
1314
commands:
1415
- npm install -g upm-ci-utils@stable --registry https://artifactory.prd.it.unity3d.com/artifactory/api/npm/upm-npm
@@ -18,4 +19,5 @@ package_pack_-_ngo:
1819
artifacts:
1920
packages:
2021
paths:
21-
- "upm-ci~/**"
22+
- "upm-ci~/**"
23+
{% endfor -%}

.yamato/project-pack.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,19 @@
44
# Jobs that iterate through and packs all NGO projects listed (to use in different jobs)
55
# For this job no specific platform support and no running Unity instance is required so small agent (as per project.metafile definition) will be used to save resources and speed up the process
66
{% for project in projects.all -%}
7+
{% for platform in small_agent_platform.all -%}
78
project_pack_-_{{ project.name }}:
8-
name: Project Pack - {{ project.name }} [{{ small_agent_platform.name }}]
9+
name: Project Pack - {{ project.name }} [{{ platform.name }}]
910
agent:
10-
type: {{ small_agent_platform.type }}
11-
image: {{ small_agent_platform.image }}
12-
flavor: {{ small_agent_platform.flavor }}
11+
type: {{ platform.type }}
12+
image: {{ platform.image }}
13+
flavor: {{ platform.flavor }}
1314
commands:
1415
- npm install -g upm-ci-utils@stable --registry https://artifactory.prd.cds.internal.unity3d.com/artifactory/api/npm/upm-npm
1516
- upm-ci project pack --project-path {{ project.path }}
1617
artifacts:
1718
packages:
1819
paths:
1920
- "upm-ci~/packages/**/*"
21+
{% endfor -%}
2022
{% endfor -%}

0 commit comments

Comments
 (0)