Skip to content

Commit

Permalink
fix(zkalc CI): skip Windows as Clang throws fatal error LNK1107
Browse files Browse the repository at this point in the history
  • Loading branch information
mratsim committed Jul 12, 2024
1 parent 1ae4a0b commit c2042c6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -339,15 +339,17 @@ 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
CTT_ASM=0 nimble make_zkalc
- 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
Expand Down

0 comments on commit c2042c6

Please sign in to comment.