CI: run every 2 hours instead of 3

This commit is contained in:
Christoph Reiter 2023-03-24 17:18:21 +01:00
parent e3bb36afac
commit 3116e844be
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ on:
required: false
type: string
schedule:
- cron: '0 0/3 * * *'
- cron: '0 0/2 * * *'
env:
PYTHONUNBUFFERED: 1

View File

@ -62,7 +62,7 @@ class Config:
}
"""Fetch certain build types from other repos if available"""
SOFT_JOB_TIMEOUT = 60 * 60 * 3
SOFT_JOB_TIMEOUT = 60 * 60 * 2
"""Runtime after which we shouldn't start a new build"""
MAXIMUM_JOB_COUNT = 15