Build less for windows
This commit is contained in:
@ -55,10 +55,20 @@ cargo=cargo
|
|||||||
echo "Install location: $installDir ($buildVariant)"
|
echo "Install location: $installDir ($buildVariant)"
|
||||||
|
|
||||||
cd "$(dirname "$0")"/..
|
cd "$(dirname "$0")"/..
|
||||||
./fetch-perf-libs.sh
|
|
||||||
|
|
||||||
SECONDS=0
|
SECONDS=0
|
||||||
|
|
||||||
|
if [[ $CI_OS_NAME = windows ]]; then
|
||||||
|
# Limit windows to end-user command-line tools. Full validator support is not
|
||||||
|
# yet available on windows
|
||||||
|
BINS=(
|
||||||
|
solana
|
||||||
|
solana-install
|
||||||
|
solana-install-init
|
||||||
|
solana-keygen
|
||||||
|
)
|
||||||
|
else
|
||||||
|
./fetch-perf-libs.sh
|
||||||
(
|
(
|
||||||
set -x
|
set -x
|
||||||
# shellcheck disable=SC2086 # Don't want to double quote $rust_version
|
# shellcheck disable=SC2086 # Don't want to double quote $rust_version
|
||||||
@ -73,16 +83,6 @@ SECONDS=0
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
if [[ $CI_OS_NAME = windows ]]; then
|
|
||||||
# Limit windows to end-user command-line tools. Full validator support is not
|
|
||||||
# yet available on windows
|
|
||||||
BINS=(
|
|
||||||
solana
|
|
||||||
solana-install
|
|
||||||
solana-install-init
|
|
||||||
solana-keygen
|
|
||||||
)
|
|
||||||
else
|
|
||||||
BINS=(
|
BINS=(
|
||||||
solana
|
solana
|
||||||
solana-bench-exchange
|
solana-bench-exchange
|
||||||
|
Reference in New Issue
Block a user