From 88d4b468d11699ef873fa4a4700f1d80718da5f2 Mon Sep 17 00:00:00 2001 From: Sebastian Wilzbach Date: Thu, 28 Dec 2017 00:24:21 +0100 Subject: [PATCH 1/2] Don't treat major issues as regressions --- source/dlangbot/warnings.d | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/source/dlangbot/warnings.d b/source/dlangbot/warnings.d index ca28e35..fa9ef5f 100644 --- a/source/dlangbot/warnings.d +++ b/source/dlangbot/warnings.d @@ -32,8 +32,7 @@ void checkBugzilla(in ref PullRequest pr, ref UserMessage[] msgs, if (pr.base.ref_ != "stable") { if (bugzillaIssues.any!(i => i.status.among("NEW", "ASSIGNED", "REOPENED") && - i.severity.among("critical", "major", - "blocker", "regression") && + i.severity.among("critical", "blocker", "regression") && refs.canFind!(r => r.id == i.id && r.fixed))) { msgs ~= UserMessage(UserMessage.Type.Warning, From 45fc024c88c179ca170ef149412070aade833f33 Mon Sep 17 00:00:00 2001 From: ZombineDev Date: Thu, 28 Dec 2017 12:51:36 +0200 Subject: [PATCH 2/2] TravisCI: Allow dmd-nightly and dmd-beta to fail temporary --- .travis.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.travis.yml b/.travis.yml index 05ab672..934153d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -23,3 +23,6 @@ matrix: - dub test --compiler=$DC --build=unittest-cov --build-mode=singleFile after_success: - bash <(curl -s https://codecov.io/bash) + allow_failures: + - d: dmd-nightly + - d: dmd-beta