This commit is contained in:
Dmitriy Ryajov 2024-01-19 15:43:55 -06:00
parent d9cc33a98c
commit 558e51a78e
No known key found for this signature in database
GPG Key ID: DA8C680CE7C657A4
3 changed files with 14 additions and 5 deletions

View File

@ -8,13 +8,22 @@ jobs:
strategy: strategy:
matrix: matrix:
nim: [stable, 1.6.16, 1.4.8, 1.2.18] nim: [stable, 1.6.16, 1.4.8, 1.2.18]
toolchain:
- stable
# - beta
# - nightly
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v3
with: with:
submodules: 'true' submodules: 'true'
- uses: iffy/install-nim@v3
- name: Install Nim
uses: asdf-vm/actions/install@v3
with: with:
version: ${{ matrix.nim }} tool_versions: |
nim ${{ matrix.nim }}
- name: Build - name: Build
run: nimble install -y run: nimble install -y
- name: Test - name: Test

View File

@ -17,6 +17,6 @@ static:
if exitCode != 0: if exitCode != 0:
raiseAssert("Failed to build circom-compat-ffi") raiseAssert("Failed to build circom-compat-ffi")
{.passl: "-lcircom_compat_ffi" & " -L" & libDir.} {.passl: "-lcircom_compat_ffi -lm" & " -L" & libDir.}
include circomcompatffi include circomcompatffi

@ -1 +1 @@
Subproject commit 5a522239a62262f6b0fefa1f1d54a22b72da5b38 Subproject commit e59ea184fa4356ed6456cdaf2b2273753e3a2a41