Skip to content

Commit 75e1cf3

Browse files
committed
corrected supported editors for build automation
1 parent 1f81a49 commit 75e1cf3

1 file changed

Lines changed: 6 additions & 33 deletions

File tree

Tools/scripts/ReleaseAutomation/release_config.py

Lines changed: 6 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -90,57 +90,30 @@ def __init__(self):
9090

9191
self.yamato_build_automation_configs = [
9292
{
93-
"job_name": "Build Sample for Windows with minimal supported editor (2022.3), burst ON, IL2CPP",
93+
"job_name": "Build Sample for Windows with supported editor (6000.0), burst ON, IL2CPP",
9494
"variables": [
9595
{ "key": "BURST_ON_OFF", "value": "on" },
9696
{ "key": "PLATFORM_WIN64_MAC_ANDROID", "value": "win64" },
9797
{ "key": "SCRIPTING_BACKEND_IL2CPP_MONO", "value": "il2cpp" },
98-
{ "key": "UNITY_VERSION", "value": "2022.3" } # Minimal supported editor
98+
{ "key": "UNITY_VERSION", "value": "6000.0" }
9999
]
100100
},
101101
{
102-
"job_name": "Build Sample for Windows with latest functional editor (6000.3), burst ON, IL2CPP",
103-
"variables": [
104-
{ "key": "BURST_ON_OFF", "value": "on" },
105-
{ "key": "PLATFORM_WIN64_MAC_ANDROID", "value": "win64" },
106-
{ "key": "SCRIPTING_BACKEND_IL2CPP_MONO", "value": "il2cpp" },
107-
{ "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.
108-
]
109-
},
110-
{
111-
"job_name": "Build Sample for MacOS with minimal supported editor (2022.3), burst OFF, Mono",
102+
"job_name": "Build Sample for MacOS with supported editor (6000.0), burst OFF, Mono",
112103
"variables": [
113104
{ "key": "BURST_ON_OFF", "value": "off" },
114105
{ "key": "PLATFORM_WIN64_MAC_ANDROID", "value": "mac" },
115106
{ "key": "SCRIPTING_BACKEND_IL2CPP_MONO", "value": "mono" },
116-
{ "key": "UNITY_VERSION", "value": "2022.3" } # Minimal supported editor
117-
]
118-
},
119-
{
120-
"job_name": "Build Sample for MacOS with latest functional editor (6000.3), burst OFF, Mono",
121-
"variables": [
122-
{ "key": "BURST_ON_OFF", "value": "off" },
123-
{ "key": "PLATFORM_WIN64_MAC_ANDROID", "value": "mac" },
124-
{ "key": "SCRIPTING_BACKEND_IL2CPP_MONO", "value": "mono" },
125-
{ "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.
126-
]
127-
},
128-
{
129-
"job_name": "Build Sample for Android with minimal supported editor (2022.3), burst ON, IL2CPP",
130-
"variables": [
131-
{ "key": "BURST_ON_OFF", "value": "on" },
132-
{ "key": "PLATFORM_WIN64_MAC_ANDROID", "value": "android" },
133-
{ "key": "SCRIPTING_BACKEND_IL2CPP_MONO", "value": "il2cpp" },
134-
{ "key": "UNITY_VERSION", "value": "2022.3" } # Minimal supported editor
107+
{ "key": "UNITY_VERSION", "value": "6000.0" }
135108
]
136109
},
137110
{
138-
"job_name": "Build Sample for Android with latest functional editor (6000.3), burst ON, IL2CPP",
111+
"job_name": "Build Sample for Android with supported editor (6000.0), burst ON, IL2CPP",
139112
"variables": [
140113
{ "key": "BURST_ON_OFF", "value": "on" },
141114
{ "key": "PLATFORM_WIN64_MAC_ANDROID", "value": "android" },
142115
{ "key": "SCRIPTING_BACKEND_IL2CPP_MONO", "value": "il2cpp" },
143-
{ "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.
116+
{ "key": "UNITY_VERSION", "value": "6000.0" }
144117
]
145118
}
146119
]

0 commit comments

Comments
 (0)