From: "Martin Liška" <mliska@suse.cz>
To: overseers@sourceware.org
Cc: Mark Wielaard <mark@klomp.org>
Subject: [PATCH] Enable openSUSE builders for gdb and binutils.
Date: Thu, 26 May 2022 10:41:44 +0200 [thread overview]
Message-ID: <cd210927-2e72-efb5-b6e3-c0a92951162f@suse.cz> (raw)
---
builder/master.cfg | 44 ++++++++++++++++++++++++++++++++++++++++++--
htdocs/index.html | 8 ++++++++
2 files changed, 50 insertions(+), 2 deletions(-)
diff --git a/builder/master.cfg b/builder/master.cfg
index 4e6be9a..7ab24ed 100644
--- a/builder/master.cfg
+++ b/builder/master.cfg
@@ -433,7 +433,9 @@ binutils_scheduler = schedulers.SingleBranchScheduler(
"binutils-debian-ppc64",
"binutils-debian-armhf",
"binutils-debian-arm64",
- "binutils-fedora-ppc64le"])
+ "binutils-fedora-ppc64le",
+ "binutils-opensusetw-x86_64",
+ "binutils-opensuseleap-x86_64"])
c['schedulers'].append(binutils_scheduler)
# Only trigger scheduler for changes to gdb (or deps)
@@ -475,7 +477,9 @@ gdb_scheduler = schedulers.SingleBranchScheduler(
"gdb-debian-arm64",
"gdb-fedora-s390x",
"gdb-debian-ppc64",
- "gdb-fedora-ppc64le"])
+ "gdb-fedora-ppc64le",
+ "gdb-opensusetw-x86_64",
+ "gdb-opensuseleap-x86_64"])
c['schedulers'].append(gdb_scheduler)
# A scheduler for everything binutils-gdb & gcc without filters
@@ -1319,6 +1323,24 @@ binutils_fedora_ppc64le_builder = util.BuilderConfig(
factory=binutils_factory)
c['builders'].append(binutils_fedora_ppc64le_builder)
+binutils_opensusetw_x86_64_builder = util.BuilderConfig(
+ name="binutils-opensusetw-x86_64",
+ properties={'container-file':
+ readContainerFile('opensuse-tumbleweed')},
+ workernames=vm_workers,
+ tags=["binutils", "opensusetw", "x86_64"],
+ factory=binutils_factory_target_all)
+c['builders'].append(binutils_opensusetw_x86_64_builder)
+
+binutils_opensuseleap_x86_64_builder = util.BuilderConfig(
+ name="binutils-opensuseleap-x86_64",
+ properties={'container-file':
+ readContainerFile('opensuse-leap')},
+ workernames=vm_workers,
+ tags=["binutils", "opensuseleap", "x86_64"],
+ factory=binutils_factory_target_all)
+c['builders'].append(binutils_opensuseleap_x86_64_builder)
+
# gdb build steps, factory and builders
gdb_git_step = steps.Git(
@@ -1425,6 +1447,24 @@ gdb_fedora_ppc64le_builder = util.BuilderConfig(
factory=gdb_factory)
c['builders'].append(gdb_fedora_ppc64le_builder)
+gdb_opensusetw_x86_64_builder = util.BuilderConfig(
+ name="gdb-opensusetw-x86_64",
+ properties={'container-file':
+ readContainerFile('opensuse-tumbleweed')},
+ workernames=vm_workers,
+ tags=["gdb", "opensusetw", "x86_64"],
+ factory=gdb_factory)
+c['builders'].append(gdb_opensusetw_x86_64_builder)
+
+gdb_opensuseleap_x86_64_builder = util.BuilderConfig(
+ name="gdb-opensuseleap-x86_64",
+ properties={'container-file':
+ readContainerFile('opensuse-leap')},
+ workernames=vm_workers,
+ tags=["gdb", "opensuseleap", "x86_64"],
+ factory=gdb_factory)
+c['builders'].append(gdb_opensuseleap_x86_64_builder)
+
# binutils-gdb build steps, factory and builders
# just a native build
diff --git a/htdocs/index.html b/htdocs/index.html
index 6a87be6..3dbb0ac 100644
--- a/htdocs/index.html
+++ b/htdocs/index.html
@@ -47,6 +47,10 @@
<img src="/buildbot/badges/binutils-debian-arm64.svg"></a></td>
<td><a href="/buildbot/#builders/binutils-fedora-ppc64le">fedora-ppc64le<br>
<img src="/buildbot/badges/binutils-fedora-ppc64le.svg"></a></td>
+ <td><a href="/buildbot/#builders/binutils-opensusetw-x86_64">opensusetw-x86_64<br>
+ <img src="/buildbot/badges/binutils-opensusetw-x86_64.svg"></a></td>
+ <td><a href="/buildbot/#builders/binutils-opensuseleap-x86_64">opensuseleap-x86_64<br>
+ <img src="/buildbot/badges/binutils-opensuseleap-x86_64.svg"></a></td>
</tr>
<tr>
<td><a href="/buildbot/#/builders?tags=bzip2">bzip2</a></td>
@@ -173,6 +177,10 @@
<img src="/buildbot/badges/gdb-debian-ppc64.svg"></a></td>
<td><a href="/buildbot/#builders/gdb-fedora-ppc64le">fedora-ppc64le<br>
<img src="/buildbot/badges/gdb-fedora-ppc64le.svg"></a></td>
+ <td><a href="/buildbot/#builders/gdb-opensusetw-x86_64">opensusetw-x86_64<br>
+ <img src="/buildbot/badges/gdb-opensusetw-x86_64.svg"></a></td>
+ <td><a href="/buildbot/#builders/gdb-opensuseleap-x86_64">opensuseleap-x86_64<br>
+ <img src="/buildbot/badges/gdb-opensuseleap-x86_64.svg"></a></td>
</tr>
<tr>
<td><a href="/buildbot/#/builders?tags=libabigail">libabigail</a></td>
--
2.36.1
next reply other threads:[~2022-05-26 8:43 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-05-26 8:41 Martin Liška [this message]
2022-05-27 11:43 ` Mark Wielaard
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=cd210927-2e72-efb5-b6e3-c0a92951162f@suse.cz \
--to=mliska@suse.cz \
--cc=mark@klomp.org \
--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).