Remove move more
This commit is contained in:
@ -93,8 +93,6 @@ Operate a configured testnet
|
||||
--deploy-if-newer - Only deploy if newer software is
|
||||
available (requires -t or -T)
|
||||
|
||||
--use-move - Build the move-loader-program and add it to the cluster
|
||||
|
||||
--operating-mode development|softlaunch
|
||||
- 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)
|
||||
@ -187,7 +185,7 @@ build() {
|
||||
|
||||
$MAYBE_DOCKER bash -c "
|
||||
set -ex
|
||||
scripts/cargo-install-all.sh farf \"$buildVariant\" \"$maybeUseMove\"
|
||||
scripts/cargo-install-all.sh farf \"$buildVariant\"
|
||||
"
|
||||
)
|
||||
echo "Build took $SECONDS seconds"
|
||||
@ -746,7 +744,6 @@ maybeWaitForSupermajority=""
|
||||
debugBuild=false
|
||||
doBuild=true
|
||||
gpuMode=auto
|
||||
maybeUseMove=""
|
||||
netemPartition=""
|
||||
netemConfig=""
|
||||
netemConfigFile=""
|
||||
@ -826,9 +823,6 @@ while [[ -n $1 ]]; do
|
||||
elif [[ $1 = --debug ]]; then
|
||||
debugBuild=true
|
||||
shift 1
|
||||
elif [[ $1 = --use-move ]]; then
|
||||
maybeUseMove=$1
|
||||
shift 1
|
||||
elif [[ $1 = --partition ]]; then
|
||||
netemPartition=$2
|
||||
shift 2
|
||||
|
@ -21,7 +21,7 @@ fi
|
||||
cd "$(dirname "$0")"
|
||||
rm -rf usr/
|
||||
../../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 ../../fetch-spl.sh usr/bin/
|
||||
|
Reference in New Issue
Block a user