Skip to content

Commit

Permalink
add prints
Browse files Browse the repository at this point in the history
  • Loading branch information
ron committed Jul 31, 2019
1 parent da63db5 commit 3a729ad
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
6 changes: 6 additions & 0 deletions ci/Makefile
Original file line number Diff line number Diff line change
@@ -1,14 +1,20 @@
echo executing makefile

all: install build-wasm build-web

build-wasm:
echo building wasm:
wasm-pack build --out-dir ../../demo/pkg/zkif-wasm-zokrates/ ../zkif-wasm-bundles/zkif-wasm-zokrates
wasm-pack build --out-dir ../../demo/pkg/zkif-wasm-bulletproofs/ ../zkif-wasm-bundles/zkif-wasm-bulletproofs

build-web:
echo build-web:
cd ../demo && npm run build

install:
echo install:
cd ../demo && npm install

web-dev:
echo web-dev:
cd ../demo && npm run start
7 changes: 5 additions & 2 deletions ci/script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,19 @@ set +x

echo executing scripit.sh

echo processing bulletproof: checks & tests
cd ./zkif-wasm-bundles/zkif-wasm-bulletproofs/
cargo +nightly-2019-06-22 fmt -- --check
cargo +nightly-2019-06-22 clippy -- -D warnings
cargo +nightly-2019-06-22 test

echo processing zk-interface wasm example: checks & tests
cd ../zkif-wasm-example
cargo +nightly-2019-06-22 fmt -- --check
cargo +nightly-2019-06-22 clippy -- -D warnings
cargo +nightly-2019-06-22 test

echo processing zokrates: checks & tests
cd ../zkif-wasm-zokrates
cargo +nightly-2019-06-22 fmt -- --check
cargo +nightly-2019-06-22 clippy -- -D warnings
Expand All @@ -22,5 +25,5 @@ cargo +nightly-2019-06-22 test
cd ../../ci
make
cd ../demo
npm install
npm run build
#npm install
#npm run build

0 comments on commit 3a729ad

Please sign in to comment.