mirror of
https://github.com/tlsnotary/tlsn.git
synced 2026-01-09 14:48:13 -05:00
* feat: harness * delete tests.rs build artifact * fix binary path * seconds -> milliseconds * update lock * add empty tests module * rustfmt * ToString -> Display * output tests module into build artifacts * clippy * rustfmt
15 lines
499 B
Bash
Executable File
15 lines
499 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Ensure the script runs in the folder that contains this script
|
|
cd "$(dirname "$0")"
|
|
|
|
cargo build --release --package tlsn-harness-runner --package tlsn-harness-executor --package tlsn-server-fixture
|
|
|
|
mkdir -p bin
|
|
|
|
cp ../../target/release/tlsn-harness-runner bin/runner
|
|
cp ../../target/release/tlsn-harness-executor-native bin/executor-native
|
|
cp ../../target/release/tlsn-server-fixture bin/server-fixture
|
|
cp ../../target/release/tlsn-harness-wasm-server bin/wasm-server
|
|
|
|
./build.wasm.sh |