From nobody Wed May 1 21:13:58 2024 Delivered-To: importer@patchew.org Received-SPF: none (zoho.com: 192.237.175.120 is neither permitted nor denied by domain of lists.xenproject.org) client-ip=192.237.175.120; envelope-from=xen-devel-bounces@lists.xenproject.org; helo=lists.xenproject.org; Authentication-Results: mx.zohomail.com; spf=none (zoho.com: 192.237.175.120 is neither permitted nor denied by domain of lists.xenproject.org) smtp.mailfrom=xen-devel-bounces@lists.xenproject.org ARC-Seal: i=1; a=rsa-sha256; t=1564592391; cv=none; d=zoho.com; s=zohoarc; b=Yb2YHSWZSvrNRWssmqBQWGwKegCB+h9RQvJd+kyk/JfRILXPNlkdAFsjEfAH22VyRPIWNYlU+xmR0ip6Ly7hMAXySJOvm/4qJWP2U10e7nipjvvpViSKGH6N5kxR2JFoGScEpJJSOYAChFasYPLEOhCfrnqV6JUQeCvE/KB/LGg= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1564592391; h=Content-Type:Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:List-Subscribe:List-Post:List-Id:List-Help:List-Unsubscribe:MIME-Version:Message-ID:References:Sender:Subject:To:ARC-Authentication-Results; bh=GnTY5taY/jA3acmjEqHnYYmid13JmjcwPbrSKFdQXVs=; b=C/6fzV9o59t1A5HcYA8nZAx9MlWswMyWzKWvOFF6pCyJJTD4TWGbovpfbrA3kYCcIJa0EQaAIwgg0W9e4+tfjYZ9Y3IAneIfKA0qyltLW7m8NS6xllIMRUwKnHETFdXa1UxR6Ig6POcvqdSojx77uHbjpqknnny0PbFCWmbGAdY= ARC-Authentication-Results: i=1; mx.zoho.com; spf=none (zoho.com: 192.237.175.120 is neither permitted nor denied by domain of lists.xenproject.org) smtp.mailfrom=xen-devel-bounces@lists.xenproject.org Return-Path: Received: from lists.xenproject.org (lists.xenproject.org [192.237.175.120]) by mx.zohomail.com with SMTPS id 1564592391253160.63627761757084; Wed, 31 Jul 2019 09:59:51 -0700 (PDT) Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.89) (envelope-from ) id 1hsrw5-0004Bc-1e; Wed, 31 Jul 2019 16:58:45 +0000 Received: from us1-rack-dfw2.inumbo.com ([104.130.134.6]) by lists.xenproject.org with esmtp (Exim 4.89) (envelope-from ) id 1hsrw3-0004BS-K8 for xen-devel@lists.xenproject.org; Wed, 31 Jul 2019 16:58:43 +0000 Received: from mx1.suse.de (unknown [195.135.220.15]) by us1-rack-dfw2.inumbo.com (Halon) with ESMTPS id 72eff19f-b3b4-11e9-8980-bc764e045a96; Wed, 31 Jul 2019 16:58:42 +0000 (UTC) Received: from relay2.suse.de (unknown [195.135.220.254]) by mx1.suse.de (Postfix) with ESMTP id 41381AE12; Wed, 31 Jul 2019 16:58:41 +0000 (UTC) X-Inumbo-ID: 72eff19f-b3b4-11e9-8980-bc764e045a96 X-Virus-Scanned: by amavisd-new at test-mx.suse.de From: Dario Faggioli To: xen-devel@lists.xenproject.org Date: Wed, 31 Jul 2019 18:58:40 +0200 Message-ID: <156459232072.7075.5517516860417287661.stgit@Palanthas> In-Reply-To: <156458463216.7075.10552410480716651842.stgit@Palanthas> References: <156458463216.7075.10552410480716651842.stgit@Palanthas> User-Agent: StGit/0.17.1-dirty MIME-Version: 1.0 Subject: [Xen-devel] [PATCH 1/3] automation: try to keep openSUSE Leap image a little smaller X-BeenThere: xen-devel@lists.xenproject.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Xen developer discussion List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Cc: Doug Goldstein , Wei Liu Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Errors-To: xen-devel-bounces@lists.xenproject.org Sender: "Xen-devel" Using `--no-recommends` when updating or installing commands should prevent non strictly necessary packages to be installed. doing a `clean -a` after installing all the packages, should, in theory, free more space (as opposed to using just `clean`). Signed-off-by: Dario Faggioli Acked-by: Doug Goldstein --- Cc: Doug Goldstein Cc: Wei Liu --- automation/build/suse/opensuse-leap.dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/automation/build/suse/opensuse-leap.dockerfile b/automation/bu= ild/suse/opensuse-leap.dockerfile index 614a5c8405..eb70419002 100644 --- a/automation/build/suse/opensuse-leap.dockerfile +++ b/automation/build/suse/opensuse-leap.dockerfile @@ -7,8 +7,8 @@ ENV USER root RUN mkdir /build WORKDIR /build =20 -RUN zypper ref && zypper up -y -RUN zypper install -y \ +RUN zypper ref && zypper up -y --no-recommends +RUN zypper install -y --no-recommends \ acpica \ bc \ bin86 \ @@ -64,4 +64,4 @@ RUN zypper install -y \ xz-devel \ zlib-devel \ && \ - zypper clean + zypper clean -a _______________________________________________ Xen-devel mailing list Xen-devel@lists.xenproject.org https://lists.xenproject.org/mailman/listinfo/xen-devel From nobody Wed May 1 21:13:58 2024 Delivered-To: importer@patchew.org Received-SPF: none (zoho.com: 192.237.175.120 is neither permitted nor denied by domain of lists.xenproject.org) client-ip=192.237.175.120; envelope-from=xen-devel-bounces@lists.xenproject.org; helo=lists.xenproject.org; Authentication-Results: mx.zohomail.com; spf=none (zoho.com: 192.237.175.120 is neither permitted nor denied by domain of lists.xenproject.org) smtp.mailfrom=xen-devel-bounces@lists.xenproject.org ARC-Seal: i=1; a=rsa-sha256; t=1564592391; cv=none; d=zoho.com; s=zohoarc; b=lOsagbzpmNKXXwBTktOb7VSu2s8g7C7FDeRMzHyeN2dhFSZxQifRdHW2HxxMxSQ31S8VjX9ZTzr26zuOs/2NdnmtYtM6NwJWXcB4+DVAWZpf9NEz9vtkRbFMU6rPdkDu8GYXIYxLN27Grha15dF1lqeS6uKLFQrxKoPC5VGXeK0= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1564592391; h=Content-Type:Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:List-Subscribe:List-Post:List-Id:List-Help:List-Unsubscribe:MIME-Version:Message-ID:References:Sender:Subject:To:ARC-Authentication-Results; bh=nyiDY5T/K9tKO5t7h3pkSwchrIgtX8jl/FkA8gUvSTE=; b=SC62v2pRP015itBgQdIf6ArBd2WJgYnm/1HkGnepGyPruYjjpLFz998kS3rkx2N+pm3EsivhESB2W4OzL2qb+33Ggc2xmCJ1+mnOB9BJTaCq2mINvRW+QwNKU6h8O5BS4aVHrHh1cOeI0IwfCdED0TCE8hx9rPMOsEjS7BhhppM= ARC-Authentication-Results: i=1; mx.zoho.com; spf=none (zoho.com: 192.237.175.120 is neither permitted nor denied by domain of lists.xenproject.org) smtp.mailfrom=xen-devel-bounces@lists.xenproject.org Return-Path: Received: from lists.xenproject.org (lists.xenproject.org [192.237.175.120]) by mx.zohomail.com with SMTPS id 1564592391855331.3370021411449; Wed, 31 Jul 2019 09:59:51 -0700 (PDT) Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.89) (envelope-from ) id 1hsrwA-0004Cl-Bl; Wed, 31 Jul 2019 16:58:50 +0000 Received: from all-amaz-eas1.inumbo.com ([34.197.232.57] helo=us1-amaz-eas2.inumbo.com) by lists.xenproject.org with esmtp (Exim 4.89) (envelope-from ) id 1hsrw8-0004CV-Ry for xen-devel@lists.xenproject.org; Wed, 31 Jul 2019 16:58:48 +0000 Received: from mx1.suse.de (unknown [195.135.220.15]) by us1-amaz-eas2.inumbo.com (Halon) with ESMTPS id 7631dd68-b3b4-11e9-9b17-27f48eae91e5; Wed, 31 Jul 2019 16:58:47 +0000 (UTC) Received: from relay2.suse.de (unknown [195.135.220.254]) by mx1.suse.de (Postfix) with ESMTP id BC4DFAE6D; Wed, 31 Jul 2019 16:58:46 +0000 (UTC) X-Inumbo-ID: 7631dd68-b3b4-11e9-9b17-27f48eae91e5 X-Virus-Scanned: by amavisd-new at test-mx.suse.de From: Dario Faggioli To: xen-devel@lists.xenproject.org Date: Wed, 31 Jul 2019 18:58:46 +0200 Message-ID: <156459232623.7075.3064492825922924284.stgit@Palanthas> In-Reply-To: <156458463216.7075.10552410480716651842.stgit@Palanthas> References: <156458463216.7075.10552410480716651842.stgit@Palanthas> User-Agent: StGit/0.17.1-dirty MIME-Version: 1.0 Subject: [Xen-devel] [PATCH 2/3] automation: add openSUSE Tumbleweed CI image X-BeenThere: xen-devel@lists.xenproject.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Xen developer discussion List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Cc: Doug Goldstein , Wei Liu Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Errors-To: xen-devel-bounces@lists.xenproject.org Sender: "Xen-devel" openSUSE comes in two flavours: Leap, which is non-rolling, and released annualy, and Tumbleweed, which is rolling. Reasons why it makes sense to have both (despite both being openSUSE, package lists in dockerfiles being quite similar, etc) are: - Leap share a lot with SUSE Linux Enterprise. So, regressions on Leap, not only means regressions for all openSUSE Leap users, but also helps prevent/catch regressions on SLE; - Tumbleweed often has the most bleeding-edge software, so it will help us prevent/catch regressions with newly released versions of libraries, compilers, etc (e.g., at the time of writing this commit, some build issues, with GCC9, where discovered while trying to build in a Tumbleweed image). Note that, considering the rolling nature of Tumbleweed, the container would need to be rebuilt (e.g., periodically), even if the docker file does not change. Signed-off-by: Dario Faggioli Acked-by: Doug Goldstein --- Cc: Doug Goldstein Cc: Wei Liu --- .../build/suse/opensuse-tumbleweed.dockerfile | 68 ++++++++++++++++= ++++ 1 file changed, 68 insertions(+) create mode 100644 automation/build/suse/opensuse-tumbleweed.dockerfile diff --git a/automation/build/suse/opensuse-tumbleweed.dockerfile b/automat= ion/build/suse/opensuse-tumbleweed.dockerfile new file mode 100644 index 0000000000..2676a87c85 --- /dev/null +++ b/automation/build/suse/opensuse-tumbleweed.dockerfile @@ -0,0 +1,68 @@ +FROM opensuse/tumbleweed +LABEL maintainer.name=3D"The Xen Project" \ + maintainer.email=3D"xen-devel@lists.xenproject.org" + +ENV USER root + +RUN mkdir /build +WORKDIR /build + +RUN zypper ref && zypper up -y --no-recommends +RUN zypper install -y --no-recommends \ + acpica \ + bc \ + bin86 \ + bison \ + bzip2 \ + checkpolicy \ + clang \ + cmake \ + dev86 \ + discount \ + flex \ + gcc \ + gcc-c++ \ + gettext-tools \ + git \ + glib2-devel \ + glibc-devel \ + glibc-devel-32bit \ + gzip \ + hostname \ + libSDL2-devel \ + libaio-devel \ + libbz2-devel \ + libext2fs-devel \ + libgnutls-devel \ + libjpeg62-devel \ + libnl3-devel \ + libnuma-devel \ + libpixman-1-0-devel \ + libpng16-devel \ + libssh2-devel \ + libtasn1-devel \ + libuuid-devel \ + libyajl-devel \ + lzo-devel \ + make \ + nasm \ + ncurses-devel \ + ocaml \ + ocaml-findlib-devel \ + ocaml-ocamlbuild \ + ocaml-ocamldoc \ + pandoc \ + patch \ + pkg-config \ + python \ + python-devel \ + systemd-devel \ + tar \ + transfig \ + valgrind-devel \ + wget \ + which \ + xz-devel \ + zlib-devel \ + && \ + zypper clean -a _______________________________________________ Xen-devel mailing list Xen-devel@lists.xenproject.org https://lists.xenproject.org/mailman/listinfo/xen-devel From nobody Wed May 1 21:13:58 2024 Delivered-To: importer@patchew.org Received-SPF: none (zoho.com: 192.237.175.120 is neither permitted nor denied by domain of lists.xenproject.org) client-ip=192.237.175.120; envelope-from=xen-devel-bounces@lists.xenproject.org; helo=lists.xenproject.org; Authentication-Results: mx.zohomail.com; spf=none (zoho.com: 192.237.175.120 is neither permitted nor denied by domain of lists.xenproject.org) smtp.mailfrom=xen-devel-bounces@lists.xenproject.org ARC-Seal: i=1; a=rsa-sha256; t=1564592401; cv=none; d=zoho.com; s=zohoarc; b=VNmPC96HNhsry3HyN5gkZ9sR2HJidtQ95fGFWvu79vQF4qVLKDCp0vgKaVu+TTJGTPxGaStyDZNN7jP8dx4vh2AchqFs5TT80SLZEg19RLWORVo53APr14hEadiYv/ZHFc1m7JT7dT2YsWb9ZkAYx7ae3t8sesJSlXzwn0ndZaI= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1564592401; h=Content-Type:Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:List-Subscribe:List-Post:List-Id:List-Help:List-Unsubscribe:MIME-Version:Message-ID:References:Sender:Subject:To:ARC-Authentication-Results; bh=oUPImBalq1D6eD/dqggQLl7Grao5lph1NKk259WBi+c=; b=QOuFiwmIcxx8w1d49kip2lLy1++GnYoW0RNAikv1E1gQw+Esefy8ENWIoFFl0bDx4VakzNkOdff36aHO+y0Huz9eWbqA2I/KXCEw1s7ga9sVpXWGFIa0tzX1liX0Du5sdNxO8Bp7u7CKmA7vH6/BVUu/5XWBS1pG/8E1ZvY6Cq8= ARC-Authentication-Results: i=1; mx.zoho.com; spf=none (zoho.com: 192.237.175.120 is neither permitted nor denied by domain of lists.xenproject.org) smtp.mailfrom=xen-devel-bounces@lists.xenproject.org Return-Path: Received: from lists.xenproject.org (lists.xenproject.org [192.237.175.120]) by mx.zohomail.com with SMTPS id 1564592401371721.8253874025656; Wed, 31 Jul 2019 10:00:01 -0700 (PDT) Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.89) (envelope-from ) id 1hsrwG-0004F6-RG; Wed, 31 Jul 2019 16:58:56 +0000 Received: from all-amaz-eas1.inumbo.com ([34.197.232.57] helo=us1-amaz-eas2.inumbo.com) by lists.xenproject.org with esmtp (Exim 4.89) (envelope-from ) id 1hsrwG-0004Ek-2R for xen-devel@lists.xenproject.org; Wed, 31 Jul 2019 16:58:56 +0000 Received: from mx1.suse.de (unknown [195.135.220.15]) by us1-amaz-eas2.inumbo.com (Halon) with ESMTPS id 7977930a-b3b4-11e9-80a7-070076895f02; Wed, 31 Jul 2019 16:58:53 +0000 (UTC) Received: from relay2.suse.de (unknown [195.135.220.254]) by mx1.suse.de (Postfix) with ESMTP id 3F4FFAE12; Wed, 31 Jul 2019 16:58:52 +0000 (UTC) X-Inumbo-ID: 7977930a-b3b4-11e9-80a7-070076895f02 X-Virus-Scanned: by amavisd-new at test-mx.suse.de From: Dario Faggioli To: xen-devel@lists.xenproject.org Date: Wed, 31 Jul 2019 18:58:51 +0200 Message-ID: <156459233172.7075.6811919592319549670.stgit@Palanthas> In-Reply-To: <156458463216.7075.10552410480716651842.stgit@Palanthas> References: <156458463216.7075.10552410480716651842.stgit@Palanthas> User-Agent: StGit/0.17.1-dirty MIME-Version: 1.0 Subject: [Xen-devel] [PATCH 3/3] automation: build in openSUSE Tumbleweed X-BeenThere: xen-devel@lists.xenproject.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Xen developer discussion List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Cc: Doug Goldstein , Wei Liu Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Errors-To: xen-devel-bounces@lists.xenproject.org Sender: "Xen-devel" Signed-off-by: Dario Faggioli Acked-by: Doug Goldstein --- Cc: Doug Goldstein Cc: Wei Liu --- automation/gitlab-ci/build.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/automation/gitlab-ci/build.yaml b/automation/gitlab-ci/build.y= aml index 1e61d30c85..94877f9d01 100644 --- a/automation/gitlab-ci/build.yaml +++ b/automation/gitlab-ci/build.yaml @@ -420,6 +420,26 @@ opensuse-leap-gcc-debug: variables: CONTAINER: suse:opensuse-leap =20 +opensuse-tumbleweed-clang: + extends: .clang-x86-64-build + variables: + CONTAINER: suse:opensuse-tumbleweed + +opensuse-tumbleweed-clang-debug: + extends: .clang-x86-64-build-debug + variables: + CONTAINER: suse:opensuse-tumbleweed + +opensuse-tumbleweed-gcc: + extends: .gcc-x86-64-build + variables: + CONTAINER: suse:opensuse-tumbleweed + +opensuse-tumbleweed-gcc-debug: + extends: .gcc-x86-64-build-debug + variables: + CONTAINER: suse:opensuse-tumbleweed + # Arm builds =20 debian-unstable-gcc-arm64: _______________________________________________ Xen-devel mailing list Xen-devel@lists.xenproject.org https://lists.xenproject.org/mailman/listinfo/xen-devel