We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5c7ba8 commit 95d5e31Copy full SHA for 95d5e31
src/ci/docker/x86_64-gnu-tools/checktools.sh
@@ -23,16 +23,14 @@ touch "$TOOLSTATE_FILE"
23
set +e
24
python2.7 "$X_PY" test --no-fail-fast \
25
src/tools/rls \
26
- src/tools/rustfmt \
27
- src/tools/miri \
28
- src/tools/clippy
+ src/tools/rustfmt
29
set -e
30
31
cat "$TOOLSTATE_FILE"
32
33
# If this PR is intended to update one of these tools, do not let the build pass
34
# when they do not test-pass.
35
-for TOOL in rls rustfmt miri clippy; do
+for TOOL in rls rustfmt; do
36
echo "Verifying status of $TOOL..."
37
if echo "$CHANGED_FILES" | grep -q "^M[[:blank:]]src/tools/$TOOL$"; then
38
echo "This PR updated 'src/tools/$TOOL', verifying if status is 'test-pass'..."
0 commit comments