forked from Sconce-Labs/corridor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjustfile
More file actions
26 lines (19 loc) · 1.17 KB
/
Copy pathjustfile
File metadata and controls
26 lines (19 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Corridor hub — assumes the component repos are checked out as siblings:
# ../corridor-contracts ../corridor-circuits ../corridor-sdk
# Install just: https://github.com/casey/just
default:
@just --list
# ── Midnight / Compact (this repo) ──────────────────────────────────────────
midnight-compile:
compact compile contracts/corridor.compact contracts/managed/corridor
# ── Component repos (siblings) ──────────────────────────────────────────────
contracts-test:
cd ../corridor-contracts && cargo test --workspace
contracts-build:
cd ../corridor-contracts && cargo build --workspace --release --target wasm32v1-none
circuit-test:
cd ../corridor-circuits/corridor_eligibility && nargo test
sdk-test:
cd ../corridor-sdk && npm test
# ── Everything ─────────────────────────────────────────────────────────────
test: contracts-test circuit-test sdk-test