mirror of
https://github.com/logos-blockchain/logos-blockchain-testing.git
synced 2026-01-02 21:33:07 +00:00
11 lines
345 B
Bash
11 lines
345 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
set -euo pipefail
|
||
|
|
|
||
|
|
cargo build --all-features --manifest-path /workspace/testing-framework/tools/cfgsync/Cargo.toml --bins
|
||
|
|
|
||
|
|
cp /workspace/target/debug/cfgsync-server /workspace/artifacts/cfgsync-server
|
||
|
|
cp /workspace/target/debug/cfgsync-client /workspace/artifacts/cfgsync-client
|
||
|
|
|
||
|
|
rm -rf /workspace/target/debug/incremental
|
||
|
|
|