diff --git a/.github/workflows/msbuild.yml b/.github/workflows/msbuild.yml index f862453..ee76839 100644 --- a/.github/workflows/msbuild.yml +++ b/.github/workflows/msbuild.yml @@ -30,6 +30,9 @@ jobs: vs: [2019, 2022] build_type: [Debug, Release, 'NI Debug', 'NI Release'] platform: [x86, x64, ARM64] + exclude: + - vs: 2019 + platform: ARM64 steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/msbuildex.yml b/.github/workflows/msbuildex.yml index 5cc395c..3128553 100644 --- a/.github/workflows/msbuildex.yml +++ b/.github/workflows/msbuildex.yml @@ -28,66 +28,66 @@ jobs: matrix: include: - - vs: 2019 - platform: x86 - build_type: 'AVX Debug' - - vs: 2019 - platform: x64 - build_type: 'AVX Debug' - - vs: 2022 - platform: x86 - build_type: 'AVX Debug' - - vs: 2022 - platform: x64 - build_type: 'AVX Debug' - - vs: 2019 - platform: x86 - build_type: 'AVX2 Debug' - - vs: 2019 - platform: x64 - build_type: 'AVX2 Debug' - - vs: 2022 - platform: x86 - build_type: 'AVX2 Debug' - - vs: 2022 - platform: x64 - build_type: 'AVX2 Debug' - - vs: 2019 - platform: x86 - build_type: 'x87 Debug' - - vs: 2022 - platform: x86 - build_type: 'x87 Debug' - - vs: 2019 - platform: x86 - build_type: 'AVX Release' - - vs: 2019 - platform: x64 - build_type: 'AVX Release' - - vs: 2022 - platform: x86 - build_type: 'AVX Release' - - vs: 2022 - platform: x64 - build_type: 'AVX Release' - - vs: 2019 - platform: x86 - build_type: 'AVX2 Release' - - vs: 2019 - platform: x64 - build_type: 'AVX2 Release' - - vs: 2022 - platform: x86 - build_type: 'AVX2 Release' - - vs: 2022 - platform: x64 - build_type: 'AVX2 Release' - - vs: 2019 - platform: x86 - build_type: 'x87 Release' - - vs: 2022 - platform: x86 - build_type: 'x87 Release' + - vs: 2019 + platform: x86 + build_type: 'AVX Debug' + - vs: 2019 + platform: x64 + build_type: 'AVX Debug' + - vs: 2022 + platform: x86 + build_type: 'AVX Debug' + - vs: 2022 + platform: x64 + build_type: 'AVX Debug' + - vs: 2019 + platform: x86 + build_type: 'AVX2 Debug' + - vs: 2019 + platform: x64 + build_type: 'AVX2 Debug' + - vs: 2022 + platform: x86 + build_type: 'AVX2 Debug' + - vs: 2022 + platform: x64 + build_type: 'AVX2 Debug' + - vs: 2019 + platform: x86 + build_type: 'x87 Debug' + - vs: 2022 + platform: x86 + build_type: 'x87 Debug' + - vs: 2019 + platform: x86 + build_type: 'AVX Release' + - vs: 2019 + platform: x64 + build_type: 'AVX Release' + - vs: 2022 + platform: x86 + build_type: 'AVX Release' + - vs: 2022 + platform: x64 + build_type: 'AVX Release' + - vs: 2019 + platform: x86 + build_type: 'AVX2 Release' + - vs: 2019 + platform: x64 + build_type: 'AVX2 Release' + - vs: 2022 + platform: x86 + build_type: 'AVX2 Release' + - vs: 2022 + platform: x64 + build_type: 'AVX2 Release' + - vs: 2019 + platform: x86 + build_type: 'x87 Release' + - vs: 2022 + platform: x86 + build_type: 'x87 Release' steps: - uses: actions/checkout@v4