Skip to content

Commit 95d5e31

Browse files
committed
Don't verify miri/clippy for now
1 parent d5c7ba8 commit 95d5e31

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/ci/docker/x86_64-gnu-tools/checktools.sh

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,14 @@ touch "$TOOLSTATE_FILE"
2323
set +e
2424
python2.7 "$X_PY" test --no-fail-fast \
2525
src/tools/rls \
26-
src/tools/rustfmt \
27-
src/tools/miri \
28-
src/tools/clippy
26+
src/tools/rustfmt
2927
set -e
3028

3129
cat "$TOOLSTATE_FILE"
3230

3331
# If this PR is intended to update one of these tools, do not let the build pass
3432
# when they do not test-pass.
35-
for TOOL in rls rustfmt miri clippy; do
33+
for TOOL in rls rustfmt; do
3634
echo "Verifying status of $TOOL..."
3735
if echo "$CHANGED_FILES" | grep -q "^M[[:blank:]]src/tools/$TOOL$"; then
3836
echo "This PR updated 'src/tools/$TOOL', verifying if status is 'test-pass'..."

0 commit comments

Comments
 (0)