From dbb93cd0d268513017d75936d9097732cf2d5ee3 Mon Sep 17 00:00:00 2001 From: Michael Sproul Date: Wed, 19 Oct 2022 22:55:50 +0000 Subject: [PATCH] bors: require slasher and syncing sim tests (#3645) ## Issue Addressed I noticed that [this build](https://github.com/sigp/lighthouse/actions/runs/3269950873/jobs/5378036501) wasn't marked failed by Bors when the `syncing-simulator-ubuntu` job failed. This is because that job is absent from the `bors.toml` config. ## Proposed Changes Add missing jobs to Bors config so that they are required: - `syncing-simulator-ubuntu` - `slasher-tests` - `disallowed-from-async-lint` The `disallowed-from-async-lint` was previously allowed to fail because it was considered beta, but I think it's stable enough now we may as well require it. --- bors.toml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bors.toml b/bors.toml index 0ff5d6231..6edf55bfa 100644 --- a/bors.toml +++ b/bors.toml @@ -20,7 +20,10 @@ status = [ "doppelganger-protection-test", "execution-engine-integration-ubuntu", "cargo-vendor", - "check-msrv" + "check-msrv", + "slasher-tests", + "syncing-simulator-ubuntu", + "disallowed-from-async-lint" ] use_squash_merge = true timeout_sec = 10800