Temporarily disable erasure
This commit is contained in:
parent
4631af5011
commit
d6a8e437bb
|
@ -43,7 +43,7 @@ else
|
||||||
declare features=""
|
declare features=""
|
||||||
if [[ "$program" =~ ^(.*)-cuda$ ]]; then
|
if [[ "$program" =~ ^(.*)-cuda$ ]]; then
|
||||||
program=${BASH_REMATCH[1]}
|
program=${BASH_REMATCH[1]}
|
||||||
features="--features=cuda,erasure"
|
features="--features=cuda"
|
||||||
fi
|
fi
|
||||||
if [[ -z "$DEBUG" ]]; then
|
if [[ -z "$DEBUG" ]]; then
|
||||||
maybe_release=--release
|
maybe_release=--release
|
||||||
|
|
|
@ -89,7 +89,7 @@ parts:
|
||||||
|
|
||||||
# Build/install solana-fullnode-cuda
|
# Build/install solana-fullnode-cuda
|
||||||
./fetch-perf-libs.sh
|
./fetch-perf-libs.sh
|
||||||
cargo install --features=cuda,erasure --root $SNAPCRAFT_PART_INSTALL --bin solana-fullnode
|
cargo install --features=cuda --root $SNAPCRAFT_PART_INSTALL --bin solana-fullnode
|
||||||
mv $SNAPCRAFT_PART_INSTALL/bin/solana-fullnode $SNAPCRAFT_PART_INSTALL
|
mv $SNAPCRAFT_PART_INSTALL/bin/solana-fullnode $SNAPCRAFT_PART_INSTALL
|
||||||
rm -rf $SNAPCRAFT_PART_INSTALL/bin/*
|
rm -rf $SNAPCRAFT_PART_INSTALL/bin/*
|
||||||
mv $SNAPCRAFT_PART_INSTALL/solana-fullnode $SNAPCRAFT_PART_INSTALL/bin/solana-fullnode-cuda
|
mv $SNAPCRAFT_PART_INSTALL/solana-fullnode $SNAPCRAFT_PART_INSTALL/bin/solana-fullnode-cuda
|
||||||
|
|
Loading…
Reference in New Issue