Skip to content

Commit a2a5e3c

Browse files
committed
wip
1 parent 492db9b commit a2a5e3c

File tree

3 files changed

+12
-10
lines changed

3 files changed

+12
-10
lines changed

.github/workflows/ci.yaml

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -64,13 +64,16 @@ jobs:
6464
- name: Enable 32x9 fields implementation
6565
run: |
6666
cargo install sd
67-
export ORIGINAL='ark-ff = { version = "0.3.0", features = [ "parallel", "asm", "std" ] }'
68-
export WITH_FEATURE='ark-ff = { version = "0.3.0", features = [ "parallel", "asm", "std", "32x9" ] }'
69-
sd -F "$ORIGINAL" "$WITH_FEATURE" ./Cargo.toml
70-
71-
export ORIGINAL='mina-curves = { git = "https://github.com/openmina/proof-systems", rev = "c478b19" }'
72-
export WITH_FEATURE='mina-curves = { git = "https://github.com/openmina/proof-systems", rev = "c478b19", features = [ "32x9" ] }'
73-
sd -F "$ORIGINAL" "$WITH_FEATURE" ./Cargo.toml
67+
sd '^mina-curves.*$' '' ./Cargo.toml
68+
sd '^ark-ff = \{ version .*$' '' ./Cargo.toml
69+
sd -F '# ENABLE_IN_CI ' '' ./Cargo.toml
70+
71+
# export ORIGINAL='ark-ff = { version = "0.3.0", features = [ "parallel", "asm", "std" ] }'
72+
# export WITH_FEATURE='ark-ff = { version = "0.3.0", features = [ "parallel", "asm", "std", "32x9" ] }'
73+
# sd -F "$ORIGINAL" "$WITH_FEATURE" ./Cargo.toml
74+
# export ORIGINAL='mina-curves = { git = "https://github.com/openmina/proof-systems", rev = "c478b19" }'
75+
# export WITH_FEATURE='mina-curves = { git = "https://github.com/openmina/proof-systems", rev = "c478b19", features = [ "32x9" ] }'
76+
# sd -F "$ORIGINAL" "$WITH_FEATURE" ./Cargo.toml
7477
7578
cat ./Cargo.toml
7679
- name: Build ledger tests

Cargo.lock

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ ledger = { path = "ledger", package = "mina-tree" }
4949
mina-hasher = { git = "https://github.com/openmina/proof-systems", rev = "c478b19" }
5050
mina-signer = { git = "https://github.com/openmina/proof-systems", rev = "c478b19" }
5151
mina-curves = { git = "https://github.com/openmina/proof-systems", rev = "c478b19" }
52-
# mina-curves = { git = "https://github.com/openmina/proof-systems", rev = "c478b19", features = [ "32x9" ] }
52+
# ENABLE_IN_CI mina-curves = { git = "https://github.com/openmina/proof-systems", rev = "c478b19", features = [ "32x9" ] }
5353
o1-utils = { git = "https://github.com/openmina/proof-systems", rev = "c478b19" }
5454
kimchi = { git = "https://github.com/openmina/proof-systems", rev = "c478b19" }
5555
mina-poseidon = {git = "https://github.com/openmina/proof-systems", rev = "c478b19" }
@@ -67,7 +67,7 @@ static_assertions = "1.1.0"
6767
juniper = { version = "0.16" }
6868

6969
ark-ff = { version = "0.3.0", features = [ "parallel", "asm", "std" ] }
70-
# ark-ff = { version = "0.3.0", features = [ "parallel", "asm", "std", "32x9" ] }
70+
# ENABLE_IN_CI ark-ff = { version = "0.3.0", features = [ "parallel", "asm", "std", "32x9" ] }
7171

7272

7373
[profile.fuzz]

0 commit comments

Comments
 (0)