From c2042c65e81e51bb3b7f24d1224e47ab66895623 Mon Sep 17 00:00:00 2001 From: Mamy Ratsimbazafy Date: Fri, 12 Jul 2024 23:48:36 +0200 Subject: [PATCH] fix(zkalc CI): skip Windows as Clang throws fatal error LNK1107 --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f22499b8..81eaed34 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -339,7 +339,8 @@ jobs: - name: Compile Constantine Zkalc benchmark (no assembly) # Skip 32-bit as that would need clang-multilib or -m32 - if: matrix.target.BACKEND == 'NO_ASM' && matrix.target.cpu != 'i386' + # Skip Windows as clang throws fatal error LNK1107 + if: matrix.target.BACKEND == 'NO_ASM' && matrix.target.cpu != 'i386' && runner.os != 'Windows' shell: bash run: | cd constantine @@ -347,7 +348,8 @@ jobs: - name: Compile Constantine Zkalc benchmark (with assembly) # Skip 32-bit as that would need clang-multilib or -m32 - if: matrix.target.BACKEND == 'ASM' && matrix.target.cpu != 'i386' + # Skip Windows as clang throws fatal error LNK1107 + if: matrix.target.BACKEND == 'ASM' && matrix.target.cpu != 'i386' && runner.os != 'Windows' shell: bash run: | cd constantine