From acbfe30941da4f0f27c9cd4b759afa1760b69a7c Mon Sep 17 00:00:00 2001 From: Fernando Cortez Date: Tue, 17 Jun 2025 14:06:37 -0400 Subject: [PATCH 1/8] downloading python from choco --- .yamato/project-standards.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.yamato/project-standards.yml b/.yamato/project-standards.yml index 7fc50c638..0392f029d 100644 --- a/.yamato/project-standards.yml +++ b/.yamato/project-standards.yml @@ -9,7 +9,7 @@ standards_{{ projects.first.name }}: commands: - dotnet --version - dotnet format --version - - pip install unity-downloader-cli --upgrade --index-url https://artifactory.prd.it.unity3d.com/artifactory/api/pypi/pypi/simple + - choco upgrade unity-downloader-cli -y -s https://artifactory.prd.it.unity3d.com/artifactory/api/nuget/unity-choco-local - unity-downloader-cli -u {{ projects.first.test_editors.first }} -c editor --wait --fast - .Editor/Unity -batchmode -nographics -logFile - -executeMethod Packages.Rider.Editor.RiderScriptEditor.SyncSolution -projectPath {{ projects.first.path }} -quit - dotnet run --project dotnet-tools/netcode.standards -- --project={{ projects.first.path }} --check From 84411c579aa59c7c43cb5f120868111b7b513479 Mon Sep 17 00:00:00 2001 From: Fernando Cortez Date: Tue, 17 Jun 2025 14:55:21 -0400 Subject: [PATCH 2/8] linux commands --- .yamato/project-standards.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.yamato/project-standards.yml b/.yamato/project-standards.yml index 0392f029d..45f3b222f 100644 --- a/.yamato/project-standards.yml +++ b/.yamato/project-standards.yml @@ -9,7 +9,10 @@ standards_{{ projects.first.name }}: commands: - dotnet --version - dotnet format --version - - choco upgrade unity-downloader-cli -y -s https://artifactory.prd.it.unity3d.com/artifactory/api/nuget/unity-choco-local + - add-apt-repository -y ppa:deadsnakes/ppa + - apt update + - apt install -y python3.9 + - pip install unity-downloader-cli --upgrade --index-url https://artifactory.prd.it.unity3d.com/artifactory/api/pypi/pypi/simple - unity-downloader-cli -u {{ projects.first.test_editors.first }} -c editor --wait --fast - .Editor/Unity -batchmode -nographics -logFile - -executeMethod Packages.Rider.Editor.RiderScriptEditor.SyncSolution -projectPath {{ projects.first.path }} -quit - dotnet run --project dotnet-tools/netcode.standards -- --project={{ projects.first.path }} --check From 8ee01c656682664dd552b268bb3179d8d314d472 Mon Sep 17 00:00:00 2001 From: Fernando Cortez Date: Tue, 17 Jun 2025 15:23:57 -0400 Subject: [PATCH 3/8] sudo --- .yamato/project-standards.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.yamato/project-standards.yml b/.yamato/project-standards.yml index 45f3b222f..8a0f438cc 100644 --- a/.yamato/project-standards.yml +++ b/.yamato/project-standards.yml @@ -9,7 +9,7 @@ standards_{{ projects.first.name }}: commands: - dotnet --version - dotnet format --version - - add-apt-repository -y ppa:deadsnakes/ppa + - sudo add-apt-repository -y ppa:deadsnakes/ppa - apt update - apt install -y python3.9 - pip install unity-downloader-cli --upgrade --index-url https://artifactory.prd.it.unity3d.com/artifactory/api/pypi/pypi/simple From 18718f3c099e330eea2c0d8bda8b993049473958 Mon Sep 17 00:00:00 2001 From: Fernando Cortez Date: Tue, 17 Jun 2025 15:45:22 -0400 Subject: [PATCH 4/8] sudo once more --- .yamato/project-standards.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.yamato/project-standards.yml b/.yamato/project-standards.yml index 8a0f438cc..03781c8d7 100644 --- a/.yamato/project-standards.yml +++ b/.yamato/project-standards.yml @@ -10,7 +10,7 @@ standards_{{ projects.first.name }}: - dotnet --version - dotnet format --version - sudo add-apt-repository -y ppa:deadsnakes/ppa - - apt update + - sudo apt update - apt install -y python3.9 - pip install unity-downloader-cli --upgrade --index-url https://artifactory.prd.it.unity3d.com/artifactory/api/pypi/pypi/simple - unity-downloader-cli -u {{ projects.first.test_editors.first }} -c editor --wait --fast From 3efd7206cc322a306fb11cb135df668aadd74728 Mon Sep 17 00:00:00 2001 From: Fernando Cortez Date: Tue, 17 Jun 2025 15:57:37 -0400 Subject: [PATCH 5/8] last sudo --- .yamato/project-standards.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.yamato/project-standards.yml b/.yamato/project-standards.yml index 03781c8d7..9b71c5fa3 100644 --- a/.yamato/project-standards.yml +++ b/.yamato/project-standards.yml @@ -11,7 +11,7 @@ standards_{{ projects.first.name }}: - dotnet format --version - sudo add-apt-repository -y ppa:deadsnakes/ppa - sudo apt update - - apt install -y python3.9 + - sudo apt install -y python3.9 - pip install unity-downloader-cli --upgrade --index-url https://artifactory.prd.it.unity3d.com/artifactory/api/pypi/pypi/simple - unity-downloader-cli -u {{ projects.first.test_editors.first }} -c editor --wait --fast - .Editor/Unity -batchmode -nographics -logFile - -executeMethod Packages.Rider.Editor.RiderScriptEditor.SyncSolution -projectPath {{ projects.first.path }} -quit From adf6ff438adcb5bce87b4df3b7eba0ec30c3a799 Mon Sep 17 00:00:00 2001 From: Fernando Cortez Date: Tue, 17 Jun 2025 16:21:51 -0400 Subject: [PATCH 6/8] pip install source change --- .yamato/project-standards.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.yamato/project-standards.yml b/.yamato/project-standards.yml index 9b71c5fa3..34dcd70fb 100644 --- a/.yamato/project-standards.yml +++ b/.yamato/project-standards.yml @@ -12,7 +12,7 @@ standards_{{ projects.first.name }}: - sudo add-apt-repository -y ppa:deadsnakes/ppa - sudo apt update - sudo apt install -y python3.9 - - pip install unity-downloader-cli --upgrade --index-url https://artifactory.prd.it.unity3d.com/artifactory/api/pypi/pypi/simple + - pip install unity-downloader-cli --upgrade - unity-downloader-cli -u {{ projects.first.test_editors.first }} -c editor --wait --fast - .Editor/Unity -batchmode -nographics -logFile - -executeMethod Packages.Rider.Editor.RiderScriptEditor.SyncSolution -projectPath {{ projects.first.path }} -quit - dotnet run --project dotnet-tools/netcode.standards -- --project={{ projects.first.path }} --check From 629abd24fe03a6b230f1f2428bc91b4a6a2c2c96 Mon Sep 17 00:00:00 2001 From: Fernando Cortez Date: Wed, 18 Jun 2025 11:19:57 -0400 Subject: [PATCH 7/8] pip command change --- .yamato/project-standards.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.yamato/project-standards.yml b/.yamato/project-standards.yml index 34dcd70fb..ab229c103 100644 --- a/.yamato/project-standards.yml +++ b/.yamato/project-standards.yml @@ -12,7 +12,7 @@ standards_{{ projects.first.name }}: - sudo add-apt-repository -y ppa:deadsnakes/ppa - sudo apt update - sudo apt install -y python3.9 - - pip install unity-downloader-cli --upgrade + - python3 -m pip install unity-downloader-cli --upgrade - unity-downloader-cli -u {{ projects.first.test_editors.first }} -c editor --wait --fast - .Editor/Unity -batchmode -nographics -logFile - -executeMethod Packages.Rider.Editor.RiderScriptEditor.SyncSolution -projectPath {{ projects.first.path }} -quit - dotnet run --project dotnet-tools/netcode.standards -- --project={{ projects.first.path }} --check From 9a31571c10b58fb55f548ba96cea847ba6188c45 Mon Sep 17 00:00:00 2001 From: Fernando Cortez Date: Wed, 18 Jun 2025 11:59:38 -0400 Subject: [PATCH 8/8] changelog addition --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6fac239ea..8a3446e97 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) Additional documentation and release notes are available at [Multiplayer Documentation](https://docs-multiplayer.unity3d.com). +## [unreleased] yyyy-mm-dd + +### Fixed +* Internal standards job fix (#915) + ## [2.5.0] - 2024-04-18 ### Changed