2026-02-02 07:19:22 +01:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
set -euo pipefail
|
|
|
|
|
|
|
|
|
|
RUSTFLAGS='--cfg feature="pol-dev-mode"' \
|
2026-03-09 08:48:05 +01:00
|
|
|
cargo build --manifest-path /workspace/cfgsync/runtime/Cargo.toml --bin cfgsync-server
|
2026-02-02 07:19:22 +01:00
|
|
|
|
|
|
|
|
RUSTFLAGS='--cfg feature="pol-dev-mode"' \
|
2026-03-09 08:48:05 +01:00
|
|
|
cargo build --manifest-path /workspace/cfgsync/runtime/Cargo.toml --bin cfgsync-client
|
2026-02-02 07:19:22 +01:00
|
|
|
|
|
|
|
|
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
|