From 7162b5eec39648d37821966e859b52929165d1a0 Mon Sep 17 00:00:00 2001 From: michal-chrobot Date: Thu, 30 Oct 2025 12:56:21 +0100 Subject: [PATCH 1/4] Added u-pr config --- .pr_agent.toml | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .pr_agent.toml diff --git a/.pr_agent.toml b/.pr_agent.toml new file mode 100644 index 0000000000..44bc7046fa --- /dev/null +++ b/.pr_agent.toml @@ -0,0 +1,2 @@ +[github_app] +pr_commands = [] From ca2144ef9188f1f3f6c5c28bb7f87ce0c58da060 Mon Sep 17 00:00:00 2001 From: michal-chrobot Date: Thu, 30 Oct 2025 13:13:03 +0100 Subject: [PATCH 2/4] re-added project pack job for updated dependencies test purpose --- .yamato/project-updated-dependencies-test.yml | 23 ++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/.yamato/project-updated-dependencies-test.yml b/.yamato/project-updated-dependencies-test.yml index 7d749ce18a..d44ab6f025 100644 --- a/.yamato/project-updated-dependencies-test.yml +++ b/.yamato/project-updated-dependencies-test.yml @@ -42,7 +42,28 @@ updated-dependencies_{{ project.name }}_NGO_{{ platform.name }}_{{ editor }}: paths: - "upm-ci~/test-results/**/*" dependencies: - - .yamato/package-pack.yml#package_pack_-_ngo_{{ platform.name }} + - .yamato/project-updated-dependencies-test.yml#project_pack_-_{{ project.name }}_{{ platform.name }} {% endfor -%} {% endfor -%} {% endfor -%} + + +# TODO: This job was removed on PR-3711 but the above job somehow can find proper artifacts with package pack job. +# This job should be removed when issue will be resolved since it's not used anywhere +{% for project in projects.all -%} +{% for platform in test_platforms.desktop -%} +project_pack_-_{{ project.name }}_{{ platform.name }}: + name: Project Pack - {{ project.name }} [{{ platform.name }}] + agent: + type: {{ platform.type }} + image: {{ platform.image }} + flavor: {{ platform.flavor }} +commands: + - npm install upm-ci-utils@stable -g --registry https://artifactory.prd.cds.internal.unity3d.com/artifactory/api/npm/upm-npm # upm-ci is not preinstalled on the image so we need to download it + - upm-ci project pack --project-path {{ project.path }} +artifacts: + packages: + paths: + - "upm-ci~/packages/**/*" +{% endfor -%} +{% endfor -%} \ No newline at end of file From 466a5d8b69d8fe5a17da05f32dda7ba02c272047 Mon Sep 17 00:00:00 2001 From: michal-chrobot Date: Thu, 30 Oct 2025 13:18:41 +0100 Subject: [PATCH 3/4] typo --- .yamato/project-updated-dependencies-test.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.yamato/project-updated-dependencies-test.yml b/.yamato/project-updated-dependencies-test.yml index d44ab6f025..9fc85153fb 100644 --- a/.yamato/project-updated-dependencies-test.yml +++ b/.yamato/project-updated-dependencies-test.yml @@ -58,12 +58,12 @@ project_pack_-_{{ project.name }}_{{ platform.name }}: type: {{ platform.type }} image: {{ platform.image }} flavor: {{ platform.flavor }} -commands: - - npm install upm-ci-utils@stable -g --registry https://artifactory.prd.cds.internal.unity3d.com/artifactory/api/npm/upm-npm # upm-ci is not preinstalled on the image so we need to download it - - upm-ci project pack --project-path {{ project.path }} -artifacts: - packages: - paths: - - "upm-ci~/packages/**/*" + commands: + - npm install upm-ci-utils@stable -g --registry https://artifactory.prd.cds.internal.unity3d.com/artifactory/api/npm/upm-npm # upm-ci is not preinstalled on the image so we need to download it + - upm-ci project pack --project-path {{ project.path }} + artifacts: + packages: + paths: + - "upm-ci~/packages/**/*" {% endfor -%} {% endfor -%} \ No newline at end of file From 2f0f79cf9a7f1304cbe53d89a611d2365412ce65 Mon Sep 17 00:00:00 2001 From: michal-chrobot Date: Thu, 30 Oct 2025 13:21:33 +0100 Subject: [PATCH 4/4] bom removed --- .pr_agent.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pr_agent.toml b/.pr_agent.toml index 44bc7046fa..49734d8c44 100644 --- a/.pr_agent.toml +++ b/.pr_agent.toml @@ -1,2 +1,2 @@ -[github_app] +[github_app] pr_commands = []