about summary refs log tree commit diff
path: root/src/ci/docker
diff options
context:
space:
mode:
authorEric Huss <eric@huss.org>2019-05-15 22:27:39 -0700
committerEric Huss <eric@huss.org>2019-05-16 10:31:13 -0700
commit6a09cfab0bf1770dfa4819f422e6bb9381c7d2e1 (patch)
tree3c7d62644678d1cf8d06e308b4a42e8bcee8f222 /src/ci/docker
parent1962adea6ad9b992516ae56ad7f8c5bc33b951cb (diff)
downloadrust-6a09cfab0bf1770dfa4819f422e6bb9381c7d2e1.tar.gz
rust-6a09cfab0bf1770dfa4819f422e6bb9381c7d2e1.zip
Update cargo
Diffstat (limited to 'src/ci/docker')
-rwxr-xr-xsrc/ci/docker/x86_64-gnu-tools/checkregression.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/ci/docker/x86_64-gnu-tools/checkregression.py b/src/ci/docker/x86_64-gnu-tools/checkregression.py
index 0cc0a6329e5..8aa90319d66 100755
--- a/src/ci/docker/x86_64-gnu-tools/checkregression.py
+++ b/src/ci/docker/x86_64-gnu-tools/checkregression.py
@@ -21,7 +21,12 @@ if __name__ == '__main__':
         state = cur[os_name]
         new_state = toolstate.get(tool, '')
         if verb == 'regressed':
-            updated = new_state < state
+            if tool == 'rls':
+                # Temporary override until
+                # https://github.com/rust-lang/rust/issues/60848 is fixed.
+                updated = False
+            else:
+                updated = new_state < state
         elif verb == 'changed':
             updated = new_state != state
         else: