Explicitly specific build variant when installing native programs

This commit is contained in:
Michael Vines 2018-12-07 08:26:45 -08:00
parent 1ddf93fd86
commit fa58da2401
5 changed files with 5 additions and 5 deletions

View File

@ -45,7 +45,7 @@ echo --- Creating tarball
cargo install --path drone --root solana-release
cargo install --path . --root solana-release
./scripts/install-native-programs.sh solana-release/bin
./scripts/install-native-programs.sh solana-release/bin release
./fetch-perf-libs.sh
# shellcheck source=/dev/null

View File

@ -51,6 +51,6 @@ echo --- ci/localnet-sanity.sh
# Assume |cargo build| has populated target/debug/ successfully.
export PATH=$PWD/target/debug:$PATH
# Move programs into the executable location so native_loader can find them
scripts/install-native-programs.sh "$PWD"/target/debug
scripts/install-native-programs.sh "$PWD"/target/debug debug
USE_INSTALL=1 ci/localnet-sanity.sh
)

View File

@ -142,7 +142,7 @@ build() {
cargo install --path drone --features=$cargoFeatures --root farf
cargo install --path . --features=$cargoFeatures --root farf
"
./scripts/install-native-programs.sh farf/
./scripts/install-native-programs.sh farf/ release
)
echo "Build took $SECONDS seconds"
}

View File

@ -24,7 +24,7 @@ rm -rf usr/
cargo install --path . --root sdk/docker-solana/usr
"
cp -f entrypoint.sh usr/bin/solana-entrypoint.sh
../../scripts/install-native-programs.sh usr/bin/
../../scripts/install-native-programs.sh usr/bin/ release
docker build -t solanalabs/solana:$CHANNEL .

View File

@ -95,7 +95,7 @@ parts:
cargo install --path . --root $SNAPCRAFT_PART_INSTALL --bins
# Install native programs
./scripts/install-native-programs.sh $SNAPCRAFT_PART_INSTALL/bin/
./scripts/install-native-programs.sh $SNAPCRAFT_PART_INSTALL/bin/ release
# Install multinode-demo/
mkdir -p $SNAPCRAFT_PART_INSTALL/multinode-demo/