about summary refs log tree commit diff
path: root/src/ci/docker
diff options
context:
space:
mode:
authorIgor Matuszewski <Xanewok@gmail.com>2019-05-18 23:59:57 +0200
committerIgor Matuszewski <Xanewok@gmail.com>2019-05-19 00:00:12 +0200
commit8d419588f1ce626c37cc05780c8eb37322726fa4 (patch)
tree28364670914ad79725389b7577dfc5ff3bbeb336 /src/ci/docker
parent1c939a3e5539a45b400b620e5d41a5c162b05c74 (diff)
downloadrust-8d419588f1ce626c37cc05780c8eb37322726fa4.tar.gz
rust-8d419588f1ce626c37cc05780c8eb37322726fa4.zip
Reverse RLS toolstate check override
As per https://github.com/rust-lang/rust/pull/60946#issuecomment-493707005
Diffstat (limited to 'src/ci/docker')
-rwxr-xr-xsrc/ci/docker/x86_64-gnu-tools/checkregression.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/ci/docker/x86_64-gnu-tools/checkregression.py b/src/ci/docker/x86_64-gnu-tools/checkregression.py
index 8aa90319d66..0cc0a6329e5 100755
--- a/src/ci/docker/x86_64-gnu-tools/checkregression.py
+++ b/src/ci/docker/x86_64-gnu-tools/checkregression.py
@@ -21,12 +21,7 @@ if __name__ == '__main__':
         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: