CI: change order of jobs

so it will be sorted by priority: UCRT64 -> CLANG64 -> MINGW64 -> MINGW32 -> CLANG32.
this changes the default job shown in "checks" tab, and it's a bit annoying to switch to UCRT64 job because MINGW64 is disabled for a particular package
This commit is contained in:
Maksim Bondarenkov 2024-10-30 13:51:18 +03:00 committed by Christoph Reiter
parent be9a5f72b8
commit d29f171e0b

View File

@ -15,10 +15,10 @@ jobs:
fail-fast: false
matrix:
include: [
{ msystem: MINGW64, runner: windows-2022 },
{ msystem: MINGW32, runner: windows-2022 },
{ msystem: UCRT64, runner: windows-2022 },
{ msystem: CLANG64, runner: windows-2022 },
{ msystem: MINGW64, runner: windows-2022 },
{ msystem: MINGW32, runner: windows-2022 },
{ msystem: CLANG32, runner: windows-2022 },
# { msystem: CLANGARM64, runner: ['Windows', 'ARM64', 'CI'] }
]