ci: Improve build priorities with matrix order changes

We want to prioritize bitness over type over license over license version.
This commit is contained in:
Michael Fabian 'Xaymar' Dirks
2021-05-19 05:03:33 +02:00
parent f5857e38f5
commit c7f5b99d34
+3 -3
View File
@@ -17,10 +17,10 @@ jobs:
strategy:
max-parallel: 4
matrix:
bits: [ 32, 64 ]
type: [ "static", "shared" ]
license_version: [ 3, 2 ]
license: [ "LGPL", "GPL" ]
license_version: [ 2, 3 ]
type: [ "shared" , "static" ]
bits: [ 64, 32 ]
name: "Windows (${{ matrix.bits }}bit, ${{ matrix.type }}, ${{ matrix.license }}v${{ matrix.license_version}})"
steps:
- name: "Checkout"