ci: Don't bother with static or 32-bit

Static builds are mostly pointless as the compilers used differ quite a lot. We also shouldn't bother with 32-bit anymore, as it has been replaced by 64-bit on Windows.
This commit is contained in:
Michael Fabian 'Xaymar' Dirks
2021-05-23 18:58:47 +02:00
parent cc54016f3a
commit c7f4b1690a
+2 -2
View File
@@ -24,8 +24,8 @@ jobs:
matrix: matrix:
license_version: [ 3, 2 ] license_version: [ 3, 2 ]
license: [ "GPL", "LGPL" ] license: [ "GPL", "LGPL" ]
type: [ "shared" , "static" ] type: [ "shared" ]
bits: [ 64, 32 ] bits: [ 64 ]
name: "Windows (${{ matrix.bits }}bit, ${{ matrix.type }}, ${{ matrix.license }}v${{ matrix.license_version}})" name: "Windows (${{ matrix.bits }}bit, ${{ matrix.type }}, ${{ matrix.license }}v${{ matrix.license_version}})"
steps: steps:
- name: "automation: Check out" - name: "automation: Check out"