Skip to content

Commit

Permalink
build(config): Fix relative path
Browse files Browse the repository at this point in the history
It should be relative to path where script is being called.
  • Loading branch information
oskarth committed Feb 28, 2024
1 parent 5915305 commit a13dacf
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions anon-aadhaar-config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ device_type = "x86_64" # Options: x86_64, simulator, device, arm, arm64
build_mode = "release" # Options: debug, release

[circuit]
dir = "examples/circom/anonAadhaar" # Directory of the circuit
name = "aadhaar-verifier" # Name of the circuit
dir = "mopro-core/examples/circom/anonAadhaar" # Directory of the circuit
name = "aadhaar-verifier" # Name of the circuit

[dylib]
# NOTE: Dylib support is experimental and requires some fiddling in iOS
# See https://github.com/oskarth/mopro/pull/37 and https://github.com/oskarth/mopro/pull/38
use_dylib = false # Options: true, false
use_dylib = false # Options: true, false
name = "anonAadhaar.dylib" # Name of the dylib file, only used if use_dylib is true
4 changes: 2 additions & 2 deletions config-android-ci.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ device_type = "x86_64" # Options: x86_64, simulator, device, arm, arm64
build_mode = "release" # Options: debug, release

[circuit]
dir = "examples/circom/keccak256" # Directory of the circuit
name = "keccak256_256_test" # Name of the circuit
dir = "mopro-core/examples/circom/keccak256" # Directory of the circuit
name = "keccak256_256_test" # Name of the circuit

[dylib]
# NOTE: Dylib support is experimental and requires some fiddling in iOS
Expand Down
4 changes: 2 additions & 2 deletions config-ci.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ device_type = "x86_64" # Options: x86_64, simulator, device, arm, arm64
build_mode = "release" # Options: debug, release

[circuit]
dir = "examples/circom/keccak256" # Directory of the circuit
name = "keccak256_256_test" # Name of the circuit
dir = "mopro-core/examples/circom/keccak256" # Directory of the circuit
name = "keccak256_256_test" # Name of the circuit

[dylib]
# NOTE: Dylib support is experimental and requires some fiddling in iOS
Expand Down
4 changes: 2 additions & 2 deletions config-complex.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ device_type = "device" # Options: x86_64, simulator, device, arm, arm64
build_mode = "release" # Options: debug, release

[circuit]
dir = "examples/circom/complex-circuit" # Directory of the circuit
name = "complex-circuit-1000k-1000k" # Name of the circuit
dir = "mopro-core/examples/circom/complex-circuit" # Directory of the circuit
name = "complex-circuit-1000k-1000k" # Name of the circuit

[dylib]
# NOTE: Dylib support is experimental and requires some fiddling in iOS
Expand Down
4 changes: 2 additions & 2 deletions config-example-android.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ device_type = "arm64" # Options: x86_64, simulator, device, arm, arm64
build_mode = "release" # Options: debug, release

[circuit]
dir = "examples/circom/keccak256" # Directory of the circuit
name = "keccak256_256_test" # Name of the circuit
dir = "mopro-core/examples/circom/keccak256" # Directory of the circuit
name = "keccak256_256_test" # Name of the circuit

[dylib]
# NOTE: Dylib support is experimental and requires some fiddling in iOS
Expand Down
4 changes: 2 additions & 2 deletions config-example.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ device_type = "simulator" # Options: x86_64, simulator, device, arm, arm64
build_mode = "release" # Options: debug, release

[circuit]
dir = "examples/circom/keccak256" # Directory of the circuit
name = "keccak256_256_test" # Name of the circuit
dir = "mopro-core/examples/circom/keccak256" # Directory of the circuit
name = "keccak256_256_test" # Name of the circuit

[dylib]
# NOTE: Dylib support is experimental and requires some fiddling in iOS
Expand Down

0 comments on commit a13dacf

Please sign in to comment.