mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 23:57:56 +00:00
a44349f652
* add custom profiles and specify MSVR as 1.57 * fix host-perf-check command * use testnet profile for CI images * do not do lto for testnet profile * fix artifact path * test with testnet profile to reuse build artifacts * Revert "fix host-perf-check command" This reverts commit f1d15492204b8251685a97636cbb5a5f394f21da. * bump zombienet version Co-authored-by: Javier Viola <javier@parity.io>
9 lines
357 B
Bash
Executable File
9 lines
357 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eux
|
|
|
|
#shellcheck source=../common/lib.sh
|
|
source "$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )/../common/lib.sh"
|
|
|
|
# Builds with the runtime benchmarks/metrics features are only to be used for testing.
|
|
time cargo test --workspace --profile testnet --verbose --locked --features=runtime-benchmarks,runtime-metrics
|