From 06e68cce441d30e01bf0ccd88693abd4845c113a Mon Sep 17 00:00:00 2001 From: Brad Warren Date: Tue, 21 Apr 2020 16:34:50 -0700 Subject: [PATCH] flip condition (#7927) In #7925 we accidently changed the logic here. Before it was: type = cron OR (type = push AND branch NOT IN (apache-parser-v2, master)) now it's type = cron OR (type = push AND branch = master) We want to be able to run our full test suite on things like test-* branches. The reason we had been excluding master is it has the full test suite run on it (through what Travis calls cron) nightly and not running on every commit helps prevent us on waiting on CI since our nightly tests spin up so many jobs. This PR changes things back to the intended behavior. (We could talk about changing the condition to just type = cron OR type = push if we want, but I'd rather do that in a separate PR once things like test- branches are fixed.) --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index f00071a6f..72cd3a408 100644 --- a/.travis.yml +++ b/.travis.yml @@ -31,7 +31,7 @@ not-on-master: ¬-on-master # Jobs for the extended test suite are executed for cron jobs and pushes to # non-development branches. extended-test-suite: &extended-test-suite - if: type = cron OR (type = push AND branch = master) + if: type = cron OR (type = push AND branch != master) matrix: include: