فهرست منبع

tests: Compile zkas and mint+burn proofs before testing VM.

parazyd 4 سال پیش
والد
کامیت
51eddb6c08
1فایلهای تغییر یافته به همراه3 افزوده شده و 1 حذف شده
  1. 3 1
      Makefile

+ 3 - 1
Makefile

@@ -33,9 +33,11 @@ fix:
 clippy:
 	$(CARGO) clippy --release --all-features --all
 
-test:
+test: zkas
 	$(CARGO) test --release --all-features --all
 	$(CARGO) run --release --features=node --example tx
+	./zkas proofs/mint.zk
+	./zkas proofs/burn.zk
 	$(CARGO) run --release --features=cli,zkvm --example vm2
 
 clean: