public inbox for gdb@sourceware.org
 help / color / mirror / Atom feed
From: Mark Wielaard <mark@klomp.org>
To: Luis Machado <luis.machado@arm.com>
Cc: "Frank Ch. Eigler" <fche@elastic.org>,
	"Thomas Fitzsimmons" <fitzsim@fitzsim.org>,
	"Dan Horák" <dhorak@redhat.com>,
	"Overseers mailing list" <overseers@sourceware.org>,
	binutils@sourceware.org,
	"gdb@sourceware.org" <gdb@sourceware.org>
Subject: Re: Adding binutils to the GNU Toolchain buildbot on sourceware
Date: Thu, 28 Apr 2022 16:19:57 +0200	[thread overview]
Message-ID: <20220428141957.GB23335@gnu.wildebeest.org> (raw)
In-Reply-To: <16fe426d-c436-f030-dc43-0e81e7f0e853@arm.com>

[-- Attachment #1: Type: text/plain, Size: 1399 bytes --]

Hi Luis (added Tom ad Dan to CC for debian-ppc64/fedora-ppc64le),

On Thu, Apr 28, 2022 at 01:23:44PM +0100, Luis Machado wrote:
> It would make sense to build-test gdb if any of the following changes:

Thanks, updated the gdb_files list.  Also added fedora-x86_64,
debian-armhf, debian-arm64 and fedora-s390 builders.  See attached.

Tom, would it be OK to add a debian-ppc64 builder for gdb? As you can
see in the master.cfg it only does a build of gdb and gdbserver for
now, no tests are run. So it just would make sure that things
build. We'll might add tests later, if we can figure out a sane subset
that should always be green (and won't take more than a couple of
minutes to run). BTW. I am also working on adding more builders for
binutils (gas, ld, binutils) but the current testsuite doesn't seem
clean on anything than latest fedora-x86_64.

Dan, the fedora-ppc64le worker currently doesn't have enough diskspace
to add binutils and gdb builders. There is only 4GB left. I was
wondering if we should deprecate the fedora-ppc64 builder now that we
have Tom's debian-ppc64 which is much faster and has a more modern GNU
Toolchain installed. The fedora-ppc64 setup is no longer supported and
I believe we are the only users. So if we deprecate it maybe we can
repurpose some of the resources (disk space) to the fedora-ppc64le VM,
so we can add builders for binutils and gdb.

Thanks,

Mark

[-- Attachment #2: 0001-Update-gdb-files-and-fedora-x86_64-debian-armhf-arm6.patch --]
[-- Type: text/plain, Size: 4563 bytes --]

From 75a51ffbf1e47c36dd53d2e0bc42b8ec100baa8d Mon Sep 17 00:00:00 2001
From: Mark Wielaard <mark@klomp.org>
Date: Thu, 28 Apr 2022 15:58:06 +0200
Subject: [PATCH] Update gdb files and fedora-x86_64,
 debian-armhf/arm64,fedora-s390x builders

---
 builder/master.cfg | 51 ++++++++++++++++++++++++++++++++++++++++++----
 htdocs/index.html  | 10 +++++++++
 2 files changed, 57 insertions(+), 4 deletions(-)

diff --git a/builder/master.cfg b/builder/master.cfg
index 0c39365..75b2801 100644
--- a/builder/master.cfg
+++ b/builder/master.cfg
@@ -379,9 +379,20 @@ c['schedulers'].append(binutils_scheduler)
 
 # Only trigger scheduler for changes to gdb (or deps)
 gdb_files = ["bfd/",
-             "gdb/", "gdbserver/", "gdbsupport/",
-             "gnulib/", "sim/",
-             "include/", "libiberty/", "opcodes/",
+             "config/",
+             "gdb/",
+             "gdbserver/",
+             "gdbsupport/",
+             "include/",
+             "intl/",
+             "libbacktrace/",
+             "libctf/",
+             "libdecnumber/",
+             "libiberty/",
+             "opcodes/",
+             "readline/",
+             "sim/",
+             "zlib/",
              "configure", "Makefile.in"]
 
 def gdbImportant(change):
@@ -397,7 +408,11 @@ gdb_scheduler = schedulers.SingleBranchScheduler(
         change_filter=util.ChangeFilter(project="binutils-gdb",
                                         branch="master"),
         fileIsImportant=gdbImportant,
-        builderNames=["gdb-centos-x86_64"])
+        builderNames=["gdb-centos-x86_64",
+                      "gdb-fedora-x86_64",
+                      "gdb-debian-armhf",
+                      "gdb-debian-arm64",
+                      "gdb-fedora-s390x"])
 c['schedulers'].append(gdb_scheduler)
 
 # A scheduler for everything binutils-gdb without filters
@@ -1189,6 +1204,34 @@ gdb_centos_x86_64_builder = util.BuilderConfig(
         factory=gdb_factory)
 c['builders'].append(gdb_centos_x86_64_builder)
 
+gdb_fedora_x86_64_builder = util.BuilderConfig(
+	name="gdb-fedora-x86_64",
+        workernames=["fedora-x86_64"],
+        tags=["gdb", "fedora", "x86_64"],
+        factory=gdb_factory)
+c['builders'].append(gdb_fedora_x86_64_builder)
+
+gdb_debian_armhf_builder = util.BuilderConfig(
+	name="gdb-debian-armhf",
+        workernames=["debian-armhf"],
+        tags=["gdb", "debian", "armhf"],
+        factory=gdb_factory)
+c['builders'].append(gdb_debian_armhf_builder)
+
+gdb_debian_arm64_builder = util.BuilderConfig(
+	name="gdb-debian-arm64",
+        workernames=["debian-arm64"],
+        tags=["gdb", "debian", "arm64"],
+        factory=gdb_factory)
+c['builders'].append(gdb_debian_arm64_builder)
+
+gdb_fedora_s390x_builder = util.BuilderConfig(
+	name="gdb-fedora-s390x",
+        workernames=["fedora-s390x"],
+        tags=["gdb", "fedora", "s390x"],
+        factory=gdb_factory)
+c['builders'].append(gdb_fedora_s390x_builder)
+
 
 # binutils-gdb build steps, factory and builders
 # just a native build
diff --git a/htdocs/index.html b/htdocs/index.html
index b08a17b..b98b00a 100644
--- a/htdocs/index.html
+++ b/htdocs/index.html
@@ -129,8 +129,10 @@
 	</tr>
 	<tr>
 	  <td><a href="/buildbot/#/builders?tags=gccrust">gccrust</a></td>
+<!--
 	  <td><a href="/buildbot/#builders/gccrust-debian-arm64">debian-arm64<br>
 	      <img src="/buildbot/badges/gccrust-debian-arm64.svg"></a></td>
+-->
 	  <td><a href="/buildbot/#builders/gccrust-fedora-x86_64">fedora-x86_64<br>
 	      <img src="/buildbot/badges/gccrust-fedora-x86_64.svg"></a></td>
 	  <td><a href="/buildbot/#builders/gccrust-debian-i386">debian-i386<br>
@@ -148,6 +150,14 @@
 	  <td><a href="/buildbot/#/builders?tags=gdb">gdb</a></td>
 	  <td><a href="/buildbot/#builders/gdb-centos-x86_64">centos-x86_64<br>
               <img src="/buildbot/badges/gdb-centos-x86_64.svg"></a></td>
+	  <td><a href="/buildbot/#builders/gdb-fedora-x86_64">fedora-x86_64<br>
+              <img src="/buildbot/badges/gdb-fedora-x86_64.svg"></a></td>
+	  <td><a href="/buildbot/#builders/gdb-debian-armhf">debian-armhf<br>
+              <img src="/buildbot/badges/gdb-debian-armhf.svg"></a></td>
+	  <td><a href="/buildbot/#builders/gdb-debian-arm64">debian-arm64<br>
+              <img src="/buildbot/badges/gdb-debian-arm64.svg"></a></td>
+	  <td><a href="/buildbot/#builders/gdb-fedora-s390x">fedora-s390x<br>
+              <img src="/buildbot/badges/gdb-fedora-s390x.svg"></a></td>
 	</tr>
 	<tr>
 	  <td><a href="/buildbot/#/builders?tags=libabigail">libabigail</a></td>
-- 
2.27.0


  parent reply	other threads:[~2022-04-28 14:19 UTC|newest]

Thread overview: 40+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <YmZkKRO+yUHeFqV0@wildebeest.org>
2022-04-25 10:37 ` Luis Machado
2022-04-25 10:43   ` Frank Ch. Eigler
2022-04-25 12:16     ` Luis Machado
2022-04-25 12:30       ` Frank Ch. Eigler
2022-04-25 18:20       ` Mark Wielaard
2022-04-25 18:27         ` Frank Ch. Eigler
2022-04-25 22:11           ` Mark Wielaard
2022-04-26  3:33         ` Alan Modra
2022-04-26  6:22           ` Jan Beulich
2022-04-26 12:27             ` Nick Clifton
2022-04-26 13:49               ` Jan Beulich
2022-04-26 15:47                 ` H.J. Lu
2022-04-27  6:15                   ` Jan Beulich
2022-04-28 12:10                 ` Nick Clifton
2022-04-28 13:07                   ` Jan Beulich
2022-04-26 15:54           ` H.J. Lu
2022-04-26 23:33             ` Alan Modra
2022-04-27 18:32               ` [PATCH] x86: Disable 2 tests with large memory requirement H.J. Lu
2022-04-26  7:01         ` Adding binutils to the GNU Toolchain buildbot on sourceware Luis Machado
2022-04-26  9:40           ` Frank Ch. Eigler
2022-04-26 22:59             ` Mark Wielaard
2022-04-26 22:34           ` Mark Wielaard
2022-04-28 12:23             ` Luis Machado
2022-04-28 13:50               ` Frank Ch. Eigler
2022-04-28 13:53                 ` Luis Machado
2022-04-28 14:22                   ` Frank Ch. Eigler
2022-04-28 17:04                     ` Mark Wielaard
2022-04-28 14:48                   ` Mark Wielaard
2022-04-28 14:19               ` Mark Wielaard [this message]
2022-04-28 14:47                 ` Thomas Fitzsimmons
2022-04-28 16:28                   ` Mark Wielaard
2022-04-29 20:04                     ` gdb builder status (Was: Adding binutils to the GNU Toolchain buildbot on sourceware) Mark Wielaard
2022-05-01 19:44                       ` Mark Wielaard
2022-05-03 15:41                         ` Simon Marchi
2022-05-13  8:21                       ` Mark Wielaard
2022-04-28 17:50               ` Adding binutils to the GNU Toolchain buildbot on sourceware Nick Alcock
2022-04-29 17:54                 ` Mark Wielaard
2022-04-30  0:12                   ` Nick Alcock
2022-04-30 22:27                     ` Mark Wielaard
2022-05-03 12:48                       ` Nick Alcock

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220428141957.GB23335@gnu.wildebeest.org \
    --to=mark@klomp.org \
    --cc=binutils@sourceware.org \
    --cc=dhorak@redhat.com \
    --cc=fche@elastic.org \
    --cc=fitzsim@fitzsim.org \
    --cc=gdb@sourceware.org \
    --cc=luis.machado@arm.com \
    --cc=overseers@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).