From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CE990158094 for ; Mon, 22 Aug 2022 22:54:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CD0CDE08EC; Mon, 22 Aug 2022 22:54:57 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 74042E08EC for ; Mon, 22 Aug 2022 22:54:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4EE3C340DB4 for ; Mon, 22 Aug 2022 22:54:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BDE53558 for ; Mon, 22 Aug 2022 22:54:53 +0000 (UTC) From: "Magnus Granberg" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Magnus Granberg" Message-ID: <1661208879.9e94e5e0e464ba589d25d60d6891c0a8dee0ecd7.zorry@gentoo> Subject: [gentoo-commits] proj/tinderbox-cluster:master commit in: buildbot_gentoo_ci/db/ X-VCS-Repository: proj/tinderbox-cluster X-VCS-Files: buildbot_gentoo_ci/db/model.py buildbot_gentoo_ci/db/projects.py X-VCS-Directories: buildbot_gentoo_ci/db/ X-VCS-Committer: zorry X-VCS-Committer-Name: Magnus Granberg X-VCS-Revision: 9e94e5e0e464ba589d25d60d6891c0a8dee0ecd7 X-VCS-Branch: master Date: Mon, 22 Aug 2022 22:54:53 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 7ffc856b-7c05-4bc9-af06-e7edfa53e146 X-Archives-Hash: 8891c6ba18e9ad768e9942a45d155238 commit: 9e94e5e0e464ba589d25d60d6891c0a8dee0ecd7 Author: Magnus Granberg gentoo org> AuthorDate: Mon Aug 22 22:54:39 2022 +0000 Commit: Magnus Granberg gentoo org> CommitDate: Mon Aug 22 22:54:39 2022 +0000 URL: https://gitweb.gentoo.org/proj/tinderbox-cluster.git/commit/?id=9e94e5e0 Add Merge Requeste test to projects_repositorys in db Signed-off-by: Magnus Granberg gentoo.org> buildbot_gentoo_ci/db/model.py | 1 + buildbot_gentoo_ci/db/projects.py | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/buildbot_gentoo_ci/db/model.py b/buildbot_gentoo_ci/db/model.py index be305f2..3f1dc0a 100644 --- a/buildbot_gentoo_ci/db/model.py +++ b/buildbot_gentoo_ci/db/model.py @@ -144,6 +144,7 @@ class Model(base.DBConnectorComponent): sa.Column('pkgcheck', sa.Enum('package','full','none'), default='none'), sa.Column('build', sa.Boolean, default=False), sa.Column('test', sa.Boolean, default=False), + sa.Column('test_mr', sa.Boolean, default=False), ) # projects etc/portage settings diff --git a/buildbot_gentoo_ci/db/projects.py b/buildbot_gentoo_ci/db/projects.py index 8e2cd6f..9dcfa45 100644 --- a/buildbot_gentoo_ci/db/projects.py +++ b/buildbot_gentoo_ci/db/projects.py @@ -241,7 +241,8 @@ class ProjectsConnectorComponent(base.DBConnectorComponent): auto=row.auto, pkgcheck=pkgcheck, build=row.build, - test=row.test + test=row.test, + test_mr=row.test_mr ) def _row2dict_projects_workers(self, conn, row):