Skip to content

Commit b446e8e

Browse files
ytmimicalebcartwright
authored andcommitted
update diff-check logging
These changes mostly improve logging out the cargo version and version of the two rustfmt binaries that are compiled. Some other minor logging changes were made as well to add some whitespace to improve visual clarity when looking at the logs in the GitHub Actions console.
1 parent 8d2c415 commit b446e8e

File tree

1 file changed

+16
-3
lines changed

1 file changed

+16
-3
lines changed

ci/check_diff.sh

+16-3
Original file line numberDiff line numberDiff line change
@@ -114,15 +114,28 @@ function compile_rustfmt() {
114114
git remote add feature $REMOTE_REPO
115115
git fetch feature $FEATURE_BRANCH
116116

117-
cargo build --release --bin rustfmt && cp target/release/rustfmt $1/rustfmt
117+
CARGO_VERSON=$(cargo --version)
118+
echo -e "\ncompiling with $CARGO_VERSON\n"
119+
120+
echo "Building rustfmt from src"
121+
cargo build -q --release --bin rustfmt && cp target/release/rustfmt $1/rustfmt
122+
118123
if [ -z "$OPTIONAL_COMMIT_HASH" ] || [ "$FEATURE_BRANCH" = "$OPTIONAL_COMMIT_HASH" ]; then
119124
git switch $FEATURE_BRANCH
120125
else
121126
git switch $OPTIONAL_COMMIT_HASH --detach
122127
fi
123-
cargo build --release --bin rustfmt && cp target/release/rustfmt $1/feature_rustfmt
128+
129+
echo "Building feature rustfmt from src"
130+
cargo build -q --release --bin rustfmt && cp target/release/rustfmt $1/feature_rustfmt
131+
124132
RUSFMT_BIN=$1/rustfmt
133+
RUSTFMT_VERSION=$($RUSFMT_BIN --version)
134+
echo -e "\nRUSFMT_BIN $RUSTFMT_VERSION\n"
135+
125136
FEATURE_BIN=$1/feature_rustfmt
137+
FEATURE_VERSION=$($FEATURE_BIN --version)
138+
echo -e "FEATURE_BIN $FEATURE_VERSION\n"
126139
}
127140

128141
# Check the diff for running rustfmt and the feature branch on all the .rs files in the repo.
@@ -155,7 +168,7 @@ function check_repo() {
155168
STATUSES+=($?)
156169
set -e
157170

158-
echo "removing tmp_dir $tmp_dir"
171+
echo -e "removing tmp_dir $tmp_dir\n\n"
159172
rm -rf $tmp_dir
160173
cd $WORKDIR
161174
}

0 commit comments

Comments
 (0)