Skip to content

Commit 781a23f

Browse files
committed
Updated builds and CI
1 parent 375816a commit 781a23f

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

.yamato/_triggers.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,13 +75,13 @@ pr_code_changes_checks:
7575
# Run API validation to early-detect all new APIs that would force us to release new minor version of the package. Note that for this to work the package version in package.json must correspond to "actual package state" which means that it should be higher than last released version
7676
- .yamato/vetting-test.yml#vetting_test
7777

78-
# Run package EditMode and Playmode package tests on trunk and an older supported editor (6000.0)
78+
# Run package EditMode and Playmode package tests on trunk and the minimal supported editor (6000.0.0f1)
7979
- .yamato/package-tests.yml#package_test_-_ngo_trunk_mac
80-
- .yamato/package-tests.yml#package_test_-_ngo_6000.0_win
80+
- .yamato/package-tests.yml#package_test_-_ngo_6000.0.0f1_win
8181

82-
# Run testproject EditMode and Playmode project tests on trunk and an older supported editor (6000.0)
82+
# Run testproject EditMode and Playmode project tests on trunk and the minimal supported editor (6000.0.0f1)
8383
- .yamato/project-tests.yml#test_testproject_win_trunk
84-
- .yamato/project-tests.yml#test_testproject_mac_6000.0
84+
- .yamato/project-tests.yml#test_testproject_mac_6000.0.0f1
8585

8686
# Run standalone test. We run it only on Ubuntu since it's the fastest machine, and it was noted that for example distribution on macOS is taking 40m since we switched to Apple Silicon
8787
# Coverage on other standalone machines is present in Nightly job so it's enough to not run all of them for PRs

Tools/scripts/ReleaseAutomation/release_config.py

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -71,21 +71,21 @@ def __init__(self):
7171

7272
self.yamato_build_automation_configs = [
7373
{
74-
"job_name": "Build Sample for Windows with minimal supported editor (2022.3), burst ON, IL2CPP",
74+
"job_name": "Build Sample for Windows with minimal supported editor (6000.0.0f1), burst ON, IL2CPP",
7575
"variables": [
7676
{ "key": "BURST_ON_OFF", "value": "on" },
7777
{ "key": "PLATFORM_WIN64_MAC_ANDROID", "value": "win64" },
7878
{ "key": "SCRIPTING_BACKEND_IL2CPP_MONO", "value": "il2cpp" },
79-
{ "key": "UNITY_VERSION", "value": "2022.3" } # Minimal supported editor
79+
{ "key": "UNITY_VERSION", "value": "6000.0.0f1" } # Minimal supported editor
8080
]
8181
},
8282
{
83-
"job_name": "Build Sample for Windows with latest functional editor (6000.2), burst ON, IL2CPP",
83+
"job_name": "Build Sample for Windows with latest functional editor (6000.3), burst ON, IL2CPP",
8484
"variables": [
8585
{ "key": "BURST_ON_OFF", "value": "on" },
8686
{ "key": "PLATFORM_WIN64_MAC_ANDROID", "value": "win64" },
8787
{ "key": "SCRIPTING_BACKEND_IL2CPP_MONO", "value": "il2cpp" },
88-
{ "key": "UNITY_VERSION", "value": "6000.2" } # Editor that most our users will use (not alpha). Sometimes when testing on trunk we have weird editor issues not caused by us so the preference will be to test on latest editor that our users will use.
88+
{ "key": "UNITY_VERSION", "value": "6000.3" } # Editor that most our users will use (not alpha). Sometimes when testing on trunk we have weird editor issues not caused by us so the preference will be to test on latest editor that our users will use.
8989
]
9090
},
9191
{
@@ -98,21 +98,21 @@ def __init__(self):
9898
]
9999
},
100100
{
101-
"job_name": "Build Sample for MacOS with minimal supported editor (2022.3), burst OFF, Mono",
101+
"job_name": "Build Sample for MacOS with minimal supported editor (6000.0.0f1), burst OFF, Mono",
102102
"variables": [
103103
{ "key": "BURST_ON_OFF", "value": "off" },
104104
{ "key": "PLATFORM_WIN64_MAC_ANDROID", "value": "mac" },
105105
{ "key": "SCRIPTING_BACKEND_IL2CPP_MONO", "value": "mono" },
106-
{ "key": "UNITY_VERSION", "value": "2022.3" } # Minimal supported editor
106+
{ "key": "UNITY_VERSION", "value": "6000.0.0f1" } # Minimal supported editor
107107
]
108108
},
109109
{
110-
"job_name": "Build Sample for MacOS with latest functional editor (6000.2), burst OFF, Mono",
110+
"job_name": "Build Sample for MacOS with latest functional editor (6000.3), burst OFF, Mono",
111111
"variables": [
112112
{ "key": "BURST_ON_OFF", "value": "off" },
113113
{ "key": "PLATFORM_WIN64_MAC_ANDROID", "value": "mac" },
114114
{ "key": "SCRIPTING_BACKEND_IL2CPP_MONO", "value": "mono" },
115-
{ "key": "UNITY_VERSION", "value": "6000.2" } # Editor that most our users will use (not alpha). Sometimes when testing on trunk we have weird editor issues not caused by us so the preference will be to test on latest editor that our users will use.
115+
{ "key": "UNITY_VERSION", "value": "6000.3" } # Editor that most our users will use (not alpha). Sometimes when testing on trunk we have weird editor issues not caused by us so the preference will be to test on latest editor that our users will use.
116116
]
117117
},
118118
{
@@ -125,21 +125,21 @@ def __init__(self):
125125
]
126126
},
127127
{
128-
"job_name": "Build Sample for Android with minimal supported editor (2022.3), burst ON, IL2CPP",
128+
"job_name": "Build Sample for Android with minimal supported editor (6000.0.0f1), burst ON, IL2CPP",
129129
"variables": [
130130
{ "key": "BURST_ON_OFF", "value": "on" },
131131
{ "key": "PLATFORM_WIN64_MAC_ANDROID", "value": "android" },
132132
{ "key": "SCRIPTING_BACKEND_IL2CPP_MONO", "value": "il2cpp" },
133-
{ "key": "UNITY_VERSION", "value": "2022.3" } # Minimal supported editor
133+
{ "key": "UNITY_VERSION", "value": "6000.0.0f1" } # Minimal supported editor
134134
]
135135
},
136136
{
137-
"job_name": "Build Sample for Android with latest functional editor (6000.2), burst ON, IL2CPP",
137+
"job_name": "Build Sample for Android with latest functional editor (6000.3), burst ON, IL2CPP",
138138
"variables": [
139139
{ "key": "BURST_ON_OFF", "value": "on" },
140140
{ "key": "PLATFORM_WIN64_MAC_ANDROID", "value": "android" },
141141
{ "key": "SCRIPTING_BACKEND_IL2CPP_MONO", "value": "il2cpp" },
142-
{ "key": "UNITY_VERSION", "value": "6000.2" } # Editor that most our users will use (not alpha). Sometimes when testing on trunk we have weird editor issues not caused by us so the preference will be to test on latest editor that our users will use.
142+
{ "key": "UNITY_VERSION", "value": "6000.3" } # Editor that most our users will use (not alpha). Sometimes when testing on trunk we have weird editor issues not caused by us so the preference will be to test on latest editor that our users will use.
143143
]
144144
},
145145
{

0 commit comments

Comments
 (0)