Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ The backend regularly scrapes Unity version information:
2. Filters versions (only stable versions 2017+)
3. Stores version details in Firestore
4. Notifies maintainers via Discord
5. Schedules build jobs for new versions
5. Schedules build jobs for new/non-deprecated versions (2022+)

## CI Job Workflow

Expand Down
6 changes: 1 addition & 5 deletions functions/src/model/ciJobs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,11 +143,7 @@ export class CiJobs {
editorVersionInfo: EditorVersionInfo | null = null,
): CiJob => {
let status: JobStatus = 'deprecated';
if (
editorVersionInfo === null ||
editorVersionInfo.major >= 2019 ||
(editorVersionInfo.major === 2018 && editorVersionInfo.minor >= 2)
) {
if (editorVersionInfo === null || editorVersionInfo.major >= 2022) {
status = 'created';
}

Expand Down