Remove move more

This commit is contained in:
Michael Vines 2020-07-23 17:46:41 -07:00 committed by mergify[bot]
parent 7484202282
commit 125a36abbc
2 changed files with 2 additions and 8 deletions

View File

@ -94,8 +94,6 @@ Operate a configured testnet
--deploy-if-newer - Only deploy if newer software is --deploy-if-newer - Only deploy if newer software is
available (requires -t or -T) available (requires -t or -T)
--use-move - Build the move-loader-program and add it to the cluster
--operating-mode development|softlaunch --operating-mode development|softlaunch
- Specify whether or not to launch the cluster in "development" mode with all features enabled at epoch 0, - Specify whether or not to launch the cluster in "development" mode with all features enabled at epoch 0,
or "softlaunch" mode with some features disabled at epoch 0 (default: development) or "softlaunch" mode with some features disabled at epoch 0 (default: development)
@ -188,7 +186,7 @@ build() {
$MAYBE_DOCKER bash -c " $MAYBE_DOCKER bash -c "
set -ex set -ex
scripts/cargo-install-all.sh farf \"$buildVariant\" \"$maybeUseMove\" scripts/cargo-install-all.sh farf \"$buildVariant\"
" "
) )
echo "Build took $SECONDS seconds" echo "Build took $SECONDS seconds"
@ -755,7 +753,6 @@ maybeWaitForSupermajority=""
debugBuild=false debugBuild=false
doBuild=true doBuild=true
gpuMode=auto gpuMode=auto
maybeUseMove=""
netemPartition="" netemPartition=""
netemConfig="" netemConfig=""
netemConfigFile="" netemConfigFile=""
@ -835,9 +832,6 @@ while [[ -n $1 ]]; do
elif [[ $1 = --debug ]]; then elif [[ $1 = --debug ]]; then
debugBuild=true debugBuild=true
shift 1 shift 1
elif [[ $1 = --use-move ]]; then
maybeUseMove=$1
shift 1
elif [[ $1 = --partition ]]; then elif [[ $1 = --partition ]]; then
netemPartition=$2 netemPartition=$2
shift 2 shift 2

View File

@ -21,7 +21,7 @@ fi
cd "$(dirname "$0")" cd "$(dirname "$0")"
rm -rf usr/ rm -rf usr/
../../ci/docker-run.sh "$rust_stable_docker_image" \ ../../ci/docker-run.sh "$rust_stable_docker_image" \
scripts/cargo-install-all.sh --use-move sdk/docker-solana/usr scripts/cargo-install-all.sh sdk/docker-solana/usr
cp -f ../../run.sh usr/bin/solana-run.sh cp -f ../../run.sh usr/bin/solana-run.sh