Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Reverse RLS toolstate check override
  • Loading branch information
Xanewok committed May 18, 2019
1 parent 1c939a3 commit 8d41958
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/ci/docker/x86_64-gnu-tools/checkregression.py
Expand Up @@ -21,12 +21,7 @@
state = cur[os_name]
new_state = toolstate.get(tool, '')
if verb == 'regressed':
if tool == 'rls':
# Temporary override until
# https://github.com/rust-lang/rust/issues/60848 is fixed.
updated = False
else:
updated = new_state < state
updated = new_state < state
elif verb == 'changed':
updated = new_state != state
else:
Expand Down

0 comments on commit 8d41958

Please sign in to comment.