forked from anza-xyz/agave
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcargo-install-all.sh
executable file
·238 lines (207 loc) · 6.3 KB
/
cargo-install-all.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
#!/usr/bin/env bash
#
# |cargo install| of the top-level crate will not install binaries for
# other workspace crates or native program crates.
here="$(dirname "$0")"
readlink_cmd="readlink"
echo "OSTYPE IS: $OSTYPE"
if [[ $OSTYPE == darwin* ]]; then
# Mac OS X's version of `readlink` does not support the -f option,
# But `greadlink` does, which you can get with `brew install coreutils`
readlink_cmd="greadlink"
if ! command -v ${readlink_cmd} &> /dev/null
then
echo "${readlink_cmd} could not be found. You may need to install coreutils: \`brew install coreutils\`"
exit 1
fi
fi
SOLANA_ROOT="$("${readlink_cmd}" -f "${here}/..")"
cargo="${SOLANA_ROOT}/cargo"
set -e
usage() {
exitcode=0
if [[ -n "$1" ]]; then
exitcode=1
echo "Error: $*"
fi
cat <<EOF
usage: $0 [+<cargo version>] [--debug] [--validator-only] [--release-with-debug] <install directory>
EOF
exit $exitcode
}
maybeRustVersion=
installDir=
# buildProfileArg and buildProfile duplicate some information because cargo
# doesn't allow '--profile debug' but we still need to know that the binaries
# will be in target/debug
buildProfileArg='--profile release'
buildProfile='release'
validatorOnly=
while [[ -n $1 ]]; do
if [[ ${1:0:1} = - ]]; then
if [[ $1 = --debug ]]; then
buildProfileArg= # the default cargo profile is 'debug'
buildProfile='debug'
shift
elif [[ $1 = --release-with-debug ]]; then
buildProfileArg='--profile release-with-debug'
buildProfile='release-with-debug'
shift
elif [[ $1 = --validator-only ]]; then
validatorOnly=true
shift
else
usage "Unknown option: $1"
fi
elif [[ ${1:0:1} = \+ ]]; then
maybeRustVersion=$1
shift
else
installDir=$1
shift
fi
done
if [[ -z "$installDir" ]]; then
usage "Install directory not specified"
exit 1
fi
installDir="$(mkdir -p "$installDir"; cd "$installDir"; pwd)"
mkdir -p "$installDir/bin/deps"
echo "Install location: $installDir ($buildProfile)"
cd "$(dirname "$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=(
cargo-build-sbf
cargo-test-sbf
solana
agave-install
agave-install-init
solana-keygen
solana-stake-accounts
solana-test-validator
solana-tokens
)
DCOU_BINS=()
else
./fetch-perf-libs.sh
BINS=(
solana
solana-faucet
solana-genesis
solana-gossip
agave-install
solana-keygen
solana-log-analyzer
solana-net-shaper
agave-validator
rbpf-cli
)
DCOU_BINS=(
agave-ledger-tool
solana-bench-tps
)
# Speed up net.sh deploys by excluding unused binaries
if [[ -z "$validatorOnly" ]]; then
BINS+=(
cargo-build-sbf
cargo-test-sbf
agave-install-init
solana-stake-accounts
solana-test-validator
solana-tokens
agave-watchtower
)
DCOU_BINS+=(
solana-dos
)
fi
fi
binArgs=()
for bin in "${BINS[@]}"; do
binArgs+=(--bin "$bin")
done
dcouBinArgs=()
for bin in "${DCOU_BINS[@]}"; do
dcouBinArgs+=(--bin "$bin")
done
source "$SOLANA_ROOT"/scripts/dcou-tainted-packages.sh
excludeArgs=()
for package in "${dcou_tainted_packages[@]}"; do
excludeArgs+=(--exclude "$package")
done
mkdir -p "$installDir/bin"
cargo_build() {
# shellcheck disable=SC2086 # Don't want to double quote $maybeRustVersion
"$cargo" $maybeRustVersion build $buildProfileArg "$@"
}
# This is called to detect both of unintended activation AND deactivation of
# dcou, in order to make this rather fragile grep more resilient to bitrot...
check_dcou() {
RUSTC_BOOTSTRAP=1 \
cargo_build -Z unstable-options --build-plan "$@" | \
grep -q -F '"feature=\"dev-context-only-utils\""'
}
# Some binaries (like the notable agave-ledger-tool) need to acitivate
# the dev-context-only-utils feature flag to build.
# Build those binaries separately to avoid the unwanted feature unification.
# Note that `--workspace --exclude <dcou tainted packages>` is needed to really
# inhibit the feature unification due to a cargo bug. Otherwise, feature
# unification happens even if cargo build is run only with `--bin` targets
# which don't depend on dcou as part of dependencies at all.
(
set -x
# Make sure dcou is really disabled by peeking the (unstable) build plan
# output after turning rustc into the nightly mode with RUSTC_BOOTSTRAP=1.
# In this way, additional requirement of nightly rustc toolchian is avoided.
# Note that `cargo tree` can't be used, because it doesn't support `--bin`.
if check_dcou "${binArgs[@]}" --workspace "${excludeArgs[@]}"; then
echo 'dcou feature activation is incorrectly activated!'
exit 1
fi
# Build our production binaries without dcou.
cargo_build "${binArgs[@]}" --workspace "${excludeArgs[@]}"
# Finally, build the remaining dev tools with dcou.
if [[ ${#dcouBinArgs[@]} -gt 0 ]]; then
if ! check_dcou "${dcouBinArgs[@]}"; then
echo 'dcou feature activation is incorrectly remain to be deactivated!'
exit 1
fi
cargo_build "${dcouBinArgs[@]}"
fi
# Exclude `spl-token` binary for net.sh builds
if [[ -z "$validatorOnly" ]]; then
# shellcheck source=scripts/spl-token-cli-version.sh
source "$SOLANA_ROOT"/scripts/spl-token-cli-version.sh
# shellcheck disable=SC2086
"$cargo" $maybeRustVersion install --locked spl-token-cli --root "$installDir" $maybeSplTokenCliVersionArg
fi
)
for bin in "${BINS[@]}" "${DCOU_BINS[@]}"; do
cp -fv "target/$buildProfile/$bin" "$installDir"/bin
done
if [[ -d target/perf-libs ]]; then
cp -a target/perf-libs "$installDir"/bin/perf-libs
fi
if [[ -z "$validatorOnly" ]]; then
# shellcheck disable=SC2086 # Don't want to double quote $rust_version
"$cargo" $maybeRustVersion build --manifest-path programs/bpf_loader/gen-syscall-list/Cargo.toml
# shellcheck disable=SC2086 # Don't want to double quote $rust_version
"$cargo" $maybeRustVersion run --bin gen-headers
mkdir -p "$installDir"/bin/sdk/sbf
cp -a sdk/sbf/* "$installDir"/bin/sdk/sbf
fi
(
set -x
# deps dir can be empty
shopt -s nullglob
for dep in target/"$buildProfile"/deps/libsolana*program.*; do
cp -fv "$dep" "$installDir/bin/deps"
done
)
echo "Done after $SECONDS seconds"
echo
echo "To use these binaries:"
echo " export PATH=\"$installDir\"/bin:\"\$PATH\""