On Mon, Jul 28, 2025 at 9:04 PM Albert Astals Cid <aa...@kde.org> wrote:
> Please work on fixing them, otherwise I will remove the failing CI jobs on > their 4th failing week, it is very important that CI is passing for > multiple > reasons. > > Good news: 1 repository was fixed > > Bad news: 4 repository have started failing > > kcalendarcore - NEW > * https://invent.kde.org/frameworks/kcalendarcore/-/pipelines/1003896 > * Lots of tests fail on Windows > Looks like the unit tests here assume the system they're being run on has a UTC timezone? (The Windows VM is setup with country = Germany, so Timezone = UTC+2 would be correct) > > > kconfig - NEW > * https://invent.kde.org/frameworks/kconfig/-/pipelines/1003895 > * registrytest fails on Windows > Likely a consequence of the test not being run with administrative privileges which was previously the case in the container based CI setup. Would suggest that if the test is going to play around with registry entries that you play around with HKCU instead of HKLM (which is more dangerous anyway). > > > kfilemetadata - NEW > * https://invent.kde.org/frameworks/kfilemetadata/-/pipelines/1003894 > * usermetadatawritertest fails on Linux > * epubextractortest fails on Windows > Windows issue here appears to be locale / timezone related as well? For Linux, not sure what usermetadatawritertest does, but if it is writing file system attributes / metadata then this is likely a consequence of the SUSE cloud VM images using XFS instead of ext4 for their root filesystem. > > > threadweaver - NEW > * https://invent.kde.org/frameworks/threadweaver/-/pipelines/1003892 > * ThreadWeaverQueueTests fails on Windows > By all accounts seems to be a buffer overflow issue as 0xc0000409 means STATUS_STACK_BUFFER_OVERRUN? > > Cheers, > Albert > Thanks, Ben