File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -7,3 +7,7 @@ node_modules
77
88# Output of build-wasm
99pkg /
10+
11+ # Outputs of build-tests-webrtc
12+ cargo-build-test.json
13+ tests.tsv
Original file line number Diff line number Diff line change @@ -24,12 +24,14 @@ build-tests-webrtc: ## Build tests for WebRTC
2424 @cargo build --release --tests \
2525 --package=openmina-node-testing \
2626 --package=cli
27+ # Update ./.gitignore accordingly if cargo-build-test.json is changed
2728 @cargo build --release \
2829 --features=scenario-generators,p2p-webrtc \
2930 --package=openmina-node-testing \
3031 --tests \
3132 --message-format=json \
3233 > cargo-build-test.json
34+ # Update ./.gitignore accordingly if tests.json is changed
3335 @jq -r '. | select(.executable != null and (.target.kind | (contains(["test"])))) | [.target.name, .executable ] | @tsv' cargo-build-test.json > tests.tsv
3436 @while read NAME FILE; do \
3537 cp -a $$FILE target/release/tests/webrtc_$$NAME; \
You can’t perform that action at this time.
0 commit comments