summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Kuvyrkov <maxim.kuvyrkov@linaro.org>2019-03-15 11:59:24 +0000
committerMaxim Kuvyrkov <maxim.kuvyrkov@linaro.org>2019-03-15 12:04:34 +0000
commit97580e57b3099e1bfd7257bbda47eb1050184b91 (patch)
tree993765ff52a4986ef199bdf6e4a84ca74a3e33b2
parent04a47e7244b7eeeb54952fdc5dba4962f9a372a5 (diff)
round-robin.sh: Remove assert in update_baseline
... which no longer holds. After we started keeping first-bad artifacts (which are very useful), we can have no change in result metric compared to previous [first-bad] build. Change-Id: I9a3651226ca12c20ae4c06a2b2bd00bd8a63f518
-rw-r--r--round-robin.sh12
1 files changed, 0 insertions, 12 deletions
diff --git a/round-robin.sh b/round-robin.sh
index 21d7862a..129e6fd5 100644
--- a/round-robin.sh
+++ b/round-robin.sh
@@ -444,18 +444,6 @@ update_baseline ()
git -C base-artifacts commit $amend -m "$msg_title
$(cat ${rr[top_artifacts]}/results)"
-
- # We saw strange behavior with base-artifacts/results not being updated
- # in the rsync above. This should be fixed by "-I" rsync option, but
- # keep below asserts just in case.
- if [ x"$(diff -up ${rr[top_artifacts]}/results base-artifacts/results)" != x"" ] \
- || [ x"$amend" = x"" -a x"$(git -C base-artifacts diff HEAD HEAD^ -- results)" = x"" ]; then
- cd base-artifacts
- git status
- cat results
- ls -la
- assert false
- fi
)
}