Turn off stage retry for paygen
As detailed in the bug, the majority of stage failures now come from
actual test failures. PaygenStage should not be retried on test
failures. For the rest of the stage failures, retry does not help as
well.
BUG=chromium:402080
TEST=`cbuildbot/run_tests`
Change-Id: Id351e4761c2d0f59b46a1310f2b3c9007a151138
Reviewed-on: https://chromium-review.googlesource.com/212955
Tested-by: Yu-Ju Hong <yjhong@chromium.org>
Reviewed-by: David James <davidjames@chromium.org>
Commit-Queue: Yu-Ju Hong <yjhong@chromium.org>
diff --git a/scripts/cbuildbot.py b/scripts/cbuildbot.py
index b9f14a9..00c62dc 100644
--- a/scripts/cbuildbot.py
+++ b/scripts/cbuildbot.py
@@ -557,8 +557,7 @@
stage_list += [
[release_stages.SignerTestStage, board, archive_stage],
- [generic_stages.RetryStage, 1,
- release_stages.PaygenStage, board, archive_stage],
+ [release_stages.PaygenStage, board, archive_stage],
[test_stages.ImageTestStage, board],
[test_stages.UnitTestStage, board],
[artifact_stages.UploadPrebuiltsStage, board],