Skip to content

Commit

Permalink
fix(zkalc CI): skip zkalc build on 32-bit CI as it needs clang multilib
Browse files Browse the repository at this point in the history
  • Loading branch information
mratsim committed Jul 12, 2024
1 parent 28f03e9 commit 1ae4a0b
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 @@ -338,14 +338,16 @@ jobs:
CTT_ASM=0 cargo test -- --nocapture
- name: Compile Constantine Zkalc benchmark (no assembly)
if: matrix.target.BACKEND == 'NO_ASM'
# Skip 32-bit as that would need clang-multilib or -m32
if: matrix.target.BACKEND == 'NO_ASM' && matrix.target.cpu != 'i386'
shell: bash
run: |
cd constantine
CTT_ASM=0 nimble make_zkalc
- name: Compile Constantine Zkalc benchmark (with assembly)
if: matrix.target.BACKEND == 'ASM'
# Skip 32-bit as that would need clang-multilib or -m32
if: matrix.target.BACKEND == 'ASM' && matrix.target.cpu != 'i386'
shell: bash
run: |
cd constantine
Expand Down

0 comments on commit 1ae4a0b

Please sign in to comment.