public inbox for overseers@sourceware.org
 help / color / mirror / Atom feed
From: "Martin Liška" <mliska@suse.cz>
To: overseers@sourceware.org
Cc: Mark Wielaard <mark@klomp.org>
Subject: [PATCH] Add openSUSE builders.
Date: Wed, 25 May 2022 22:01:30 +0200	[thread overview]
Message-ID: <1a016b65-ba54-5b5e-3024-ec0531db2f52@suse.cz> (raw)
In-Reply-To: <82f57f9255f51dbeb3d7ff425f49a02c23804943.camel@klomp.org>

Hi.

Add builders for bzip2 and elfutils.

Let's start with these for testing purpose. I'm going to add others soon..

Cheers,
Martin

---
 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 4fabce7..26f57c2 100644
--- a/builder/master.cfg
+++ b/builder/master.cfg
@@ -293,7 +293,9 @@ elfutils_scheduler = schedulers.SingleBranchScheduler(
                       "elfutils-debian-armhf",
                       "elfutils-fedora-s390x",
                       "elfutils-debian-ppc64",
-                      "elfutils-fedora-ppc64le"])
+                      "elfutils-fedora-ppc64le",
+                      "elfutils-opensusetw-x86_64",
+                      "elfutils-opensuseleap-x86_64"])
 c['schedulers'].append(elfutils_scheduler)
 
 libabigail_scheduler = schedulers.SingleBranchScheduler(
@@ -341,7 +343,9 @@ bzip2_scheduler = schedulers.SingleBranchScheduler(
                       "bzip2-debian-armhf",
                       "bzip2-fedora-s390x",
                       "bzip2-debian-ppc64",
-                      "bzip2-fedora-ppc64le"])
+                      "bzip2-fedora-ppc64le",
+                      "bzip2-opensusetw-x86_64",
+                      "bzip2-opensuseleap-x86_64"])
 c['schedulers'].append(bzip2_scheduler)
 
 valgrind_scheduler = schedulers.SingleBranchScheduler(
@@ -675,6 +679,24 @@ bzip2_debian_amd64_builder = util.BuilderConfig(
         factory=bzip2_factory_no_valgrind)
 c['builders'].append(bzip2_debian_amd64_builder)
 
+bzip2_opensusetw_x86_64_builder = util.BuilderConfig(
+        name="bzip2-opensusetw-x86_64",
+	properties={'container-file':
+		    readContainerFile('opensuse-tumbleweed')},
+	workernames=vm_workers,
+        tags=["bzip2", "opensusetw", "x86_64"],
+        factory=bzip2_factory)
+c['builders'].append(bzip2_opensusetw_x86_64_builder)
+
+bzip2_opensuseleap_x86_64_builder = util.BuilderConfig(
+        name="bzip2-opensuseleap-x86_64",
+	properties={'container-file':
+		    readContainerFile('opensuse-leap')},
+	workernames=vm_workers,
+        tags=["bzip2", "opensuseleap", "x86_64"],
+        factory=bzip2_factory)
+c['builders'].append(bzip2_opensuseleap_x86_64_builder)
+
 bzip2_debian_armhf_builder = util.BuilderConfig(
         name="bzip2-debian-armhf",
         workernames=["debian-armhf"],
@@ -1033,6 +1055,24 @@ elfutils_debian_amd64_builder = util.BuilderConfig(
         factory=elfutils_factory_mvu)
 c['builders'].append(elfutils_debian_amd64_builder)
 
+elfutils_opensusetw_x86_64_builder = util.BuilderConfig(
+        name="elfutils-opensusetw-x86_64",
+	properties={'container-file':
+		    readContainerFile('opensusetw-latest')},
+	workernames=vm_workers,
+        tags=["elfutils", "opensusetw", "x86_64"],
+        factory=elfutils_factory_distcheck)
+c['builders'].append(elfutils_opensusetw_x86_64_builder)
+
+elfutils_opensuseleap_x86_64_builder = util.BuilderConfig(
+        name="elfutils-opensuseleap-x86_64",
+	properties={'container-file':
+		    readContainerFile('opensuseleap-latest')},
+	workernames=vm_workers,
+        tags=["elfutils", "opensuseleap", "x86_64"],
+        factory=elfutils_factory_distcheck)
+c['builders'].append(elfutils_opensuseleap_x86_64_builder)
+
 elfutils_debian_armhf_builder = util.BuilderConfig(
         name="elfutils-debian-armhf",
         workernames=["debian-armhf"],
diff --git a/htdocs/index.html b/htdocs/index.html
index 9d9d723..6a87be6 100644
--- a/htdocs/index.html
+++ b/htdocs/index.html
@@ -68,6 +68,10 @@
 	      <img src="/buildbot/badges/bzip2-debian-ppc64.svg"></a></td>
 	  <td><a href="/buildbot/#builders/bzip2-fedora-ppc64le">fedora-ppc64le<br>
 	      <img src="/buildbot/badges/bzip2-fedora-ppc64le.svg"></a></td>
+	  <td><a href="/buildbot/#builders/bzip2-opensusetw-x86_64">opensusetw-x86_64<br>
+	      <img src="/buildbot/badges/bzip2-opensusetw-x86_64.svg"></a></td>
+	  <td><a href="/buildbot/#builders/bzip2-opensuseleap-x86_64">opensuseleap-x86_64<br>
+	      <img src="/buildbot/badges/bzip2-opensuseleap-x86_64.svg"></a></td>
 	</tr>
 	<tr>
 	  <td><a href="/buildbot/#/builders?tags=debugedit">debugedit</a></td>
@@ -131,6 +135,10 @@
 	      <img src="/buildbot/badges/elfutils-debian-ppc64.svg"></a></td>
 	  <td><a href="/buildbot/#builders/elfutils-fedora-ppc64le">fedora-ppc64le<br>
 	      <img src="/buildbot/badges/elfutils-fedora-ppc64le.svg"></a></td>
+	  <td><a href="/buildbot/#builders/elfutils-opensusetw-x86_64">opensusetw-x86_64<br>
+	      <img src="/buildbot/badges/elfutils-opensusetw-x86_64.svg"></a></td>
+	  <td><a href="/buildbot/#builders/elfutils-opensuseleap-x86_64">opensuseleap-x86_64<br>
+	      <img src="/buildbot/badges/elfutils-opensuseleap-x86_64.svg"></a></td>
 	</tr>
 	<tr>
 	  <td><a href="/buildbot/#/builders?tags=gccrust">gccrust</a></td>
-- 
2.36.1


  reply	other threads:[~2022-05-25 20:01 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-05-25 12:57 [PATCH] containers: add openSUSE containers (Leap, Tumbleweed) Martin Liška
2022-05-25 14:49 ` Mark Wielaard
2022-05-25 20:01   ` Martin Liška [this message]
2022-05-25 21:48     ` [PATCH] Add openSUSE builders Mark Wielaard
2022-05-26  8:44       ` Martin Liška

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=1a016b65-ba54-5b5e-3024-ec0531db2f52@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).