remove outdated scripts (#1769)

This commit is contained in:
yjh
2023-10-04 16:36:06 +08:00
committed by GitHub
parent cd076d7044
commit f4827dcd16
2 changed files with 0 additions and 43 deletions
-28
View File
@@ -1,28 +0,0 @@
#!/usr/bin/env bash
# This script assumes that all pre-requisites are installed.
set -e
PROJECT_ROOT=`git rev-parse --show-toplevel`
source `dirname "$0"`/common.sh
export CARGO_INCREMENTAL=0
# Save current directory.
pushd .
cd $ROOT
for DEMO in "${DEMOS[@]}"
do
echo "*** Building wasm binaries in $DEMO"
cd "$PROJECT_ROOT/$DEMO"
./build.sh
cd - >> /dev/null
done
# Restore initial directory.
popd
-15
View File
@@ -1,15 +0,0 @@
#!/bin/bash
# Runs all benchmarks for all pallets, for each of the runtimes specified below
# Should be run on a reference machine to gain accurate benchmarks
# current reference machine: https://github.com/paritytech/substrate/pull/5848
runtimes=(
polkadot
kusama
westend
)
for runtime in "${runtimes[@]}"; do
"$(dirname "$0")/run_benches_for_runtime.sh" "$runtime"
done