Skip to content

Commit 37489e4

Browse files
ytmimicalebcartwright
authored andcommitted
Update how LD_LIBRARY_PATH is set for rustfmt binaries in diff check
rustfmt currently has a runtime dependency on the sysroot. So when we build a standalone rustfmt binary we need to set `LD_LIBRARY_PATH` so each rustfmt binary knows where to find it's dependencies. When running our Diff-Check job to test PRs for breaking changes it's often the case that both the master rustfmt binary and the feature branch binary have the same runtime dependencies so we only need to set `LD_LIBRARY_PATH` once. However, when running the diff-check job against a subtree sync PR that assumption doesn't hold. The subtree sync PR bumps the required toolchain used to build rustfmt and therefore the binary that gets built for the subtree sync PR has a different runtime dependency than the master rustfmt binary. Now we set `LD_LIBRARY_PATH` twice to account for this potential difference.
1 parent b446e8e commit 37489e4

File tree

1 file changed

+14
-3
lines changed

1 file changed

+14
-3
lines changed

ci/check_diff.sh

+14-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22

33
set -e
44

5-
# https://github.com/rust-lang/rustfmt/issues/5675
6-
export LD_LIBRARY_PATH=$(rustc --print sysroot)/lib:$LD_LIBRARY_PATH
7-
85
function print_usage() {
96
echo "usage check_diff REMOTE_REPO FEATURE_BRANCH [COMMIT_HASH] [OPTIONAL_RUSTFMT_CONFIGS]"
107
}
@@ -117,6 +114,11 @@ function compile_rustfmt() {
117114
CARGO_VERSON=$(cargo --version)
118115
echo -e "\ncompiling with $CARGO_VERSON\n"
119116

117+
# Because we're building standalone binaries we need to set `LD_LIBRARY_PATH` so each
118+
# binary can find it's runtime dependencies. See https://github.com/rust-lang/rustfmt/issues/5675
119+
# This will prepend the `LD_LIBRARY_PATH` for the master rustfmt binary
120+
export LD_LIBRARY_PATH=$(rustc --print sysroot)/lib:$LD_LIBRARY_PATH
121+
120122
echo "Building rustfmt from src"
121123
cargo build -q --release --bin rustfmt && cp target/release/rustfmt $1/rustfmt
122124

@@ -126,9 +128,18 @@ function compile_rustfmt() {
126128
git switch $OPTIONAL_COMMIT_HASH --detach
127129
fi
128130

131+
# This will prepend the `LD_LIBRARY_PATH` for the feature branch rustfmt binary.
132+
# In most cases the `LD_LIBRARY_PATH` should be the same for both rustfmt binaries that we build
133+
# in `compile_rustfmt`, however, there are scenarios where each binary has different runtime
134+
# dependencies. For example, during subtree syncs we bump the nightly toolchain required to build
135+
# rustfmt, and therefore the feature branch relies on a newer set of runtime dependencies.
136+
export LD_LIBRARY_PATH=$(rustc --print sysroot)/lib:$LD_LIBRARY_PATH
137+
129138
echo "Building feature rustfmt from src"
130139
cargo build -q --release --bin rustfmt && cp target/release/rustfmt $1/feature_rustfmt
131140

141+
echo -e "\nRuntime dependencies for rustfmt -- LD_LIBRARY_PATH: $LD_LIBRARY_PATH"
142+
132143
RUSFMT_BIN=$1/rustfmt
133144
RUSTFMT_VERSION=$($RUSFMT_BIN --version)
134145
echo -e "\nRUSFMT_BIN $RUSTFMT_VERSION\n"

0 commit comments

Comments
 (0)