mirror of
https://github.com/logos-blockchain/logos-blockchain-testing.git
synced 2026-02-17 03:33:08 +00:00
14 lines
553 B
Bash
Executable File
14 lines
553 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
RUSTFLAGS='--cfg feature="pol-dev-mode"' \
|
|
cargo build --manifest-path /workspace/testing-framework/tools/cfgsync-runtime/Cargo.toml --bin cfgsync-server
|
|
|
|
RUSTFLAGS='--cfg feature="pol-dev-mode"' \
|
|
cargo build --manifest-path /workspace/testing-framework/tools/cfgsync-runtime/Cargo.toml --bin cfgsync-client
|
|
|
|
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
|