From: Andrew Cooper <andrew.cooper3@citrix.com>
To: Oleksii Kurochko <oleksii.kurochko@gmail.com>,
Xen-devel <xen-devel@lists.xenproject.org>
Cc: "Anthony PERARD" <anthony.perard@vates.tech>,
"Michal Orzel" <michal.orzel@amd.com>,
"Jan Beulich" <jbeulich@suse.com>,
"Julien Grall" <julien@xen.org>,
"Roger Pau Monné" <roger.pau@citrix.com>,
"Stefano Stabellini" <sstabellini@kernel.org>,
"Shawn Anastasio" <sanastasio@raptorengineering.com>,
"Doug Goldstein" <cardoe@cardoe.com>,
"Marek Marczykowski-Górecki" <marmarek@invisiblethingslab.com>,
"Victor Lira" <victorm.lira@amd.com>
Subject: Re: [PATCH 3/5] CI: Update riscv64 to use Debian Trixie
Date: Mon, 11 Aug 2025 10:56:10 +0100 [thread overview]
Message-ID: <2e3412e8-9d62-449b-87e6-22d34ce06e30@citrix.com> (raw)
In-Reply-To: <2919f22b-0b0c-488e-b0c6-96b9538e63d9@gmail.com>
On 11/08/2025 9:43 am, Oleksii Kurochko wrote:
>
>
> On 8/10/25 12:12 AM, Andrew Cooper wrote:
>> Everything works fine with Debian 13. Provide two new build jobs, and update
>> both the randconfig the test jobs.
>>
>> Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
>> ---
>> CC: Anthony PERARD <anthony.perard@vates.tech>
>> CC: Michal Orzel <michal.orzel@amd.com>
>> CC: Jan Beulich <jbeulich@suse.com>
>> CC: Julien Grall <julien@xen.org>
>> CC: Roger Pau Monné <roger.pau@citrix.com>
>> CC: Stefano Stabellini <sstabellini@kernel.org>
>> CC: Shawn Anastasio <sanastasio@raptorengineering.com>
>> CC: Oleksii Kurochko <oleksii.kurochko@gmail.com>
>> CC: Doug Goldstein <cardoe@cardoe.com>
>> CC: Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com>
>> CC: Victor Lira <victorm.lira@amd.com>
>>
>> https://gitlab.com/xen-project/hardware/xen-staging/-/pipelines/1975929387
>> ---
>> automation/gitlab-ci/build.yaml | 22 ++++++++++++++++++----
>> automation/gitlab-ci/test.yaml | 2 +-
>> 2 files changed, 19 insertions(+), 5 deletions(-)
>>
>> diff --git a/automation/gitlab-ci/build.yaml b/automation/gitlab-ci/build.yaml
>> index 3fe539dc5683..f8e45f3467c8 100644
>> --- a/automation/gitlab-ci/build.yaml
>> +++ b/automation/gitlab-ci/build.yaml
>> @@ -329,10 +329,10 @@ debian-13-ppc64le-gcc-debug:
>> CONFIG_UBSAN=y
>> CONFIG_UBSAN_FATAL=y
>>
>> -debian-12-riscv64-gcc-debug:
>> +debian-13-riscv64-gcc-debug:
>> extends: .gcc-riscv64-cross-build-debug
>> variables:
>> - CONTAINER: debian:12-riscv64
>> + CONTAINER: debian:13-riscv64
>> KBUILD_DEFCONFIG: tiny64_defconfig
>> HYPERVISOR_ONLY: y
>> EXTRA_XEN_CONFIG: |
>> @@ -727,6 +727,20 @@ debian-12-riscv64-gcc:
>> KBUILD_DEFCONFIG: tiny64_defconfig
>> HYPERVISOR_ONLY: y
>>
>> +debian-12-riscv64-gcc-debug:
>> + extends: .gcc-riscv64-cross-build-debug
>> + variables:
>> + CONTAINER: debian:12-riscv64
>> + KBUILD_DEFCONFIG: tiny64_defconfig
>> + HYPERVISOR_ONLY: y
> Don't you mind to keep an order? So:
> debian-12-riscv64-gcc-debug:
> ...
> debian-13-riscv64-gcc-debug:
> ...
Notice how those 2 hunks are 400 lines apart in the file.
This is deliberate so debian-13-riscv64-gcc-debug (the one needed for
tests) is scheduled with higher priority than the others.
The diff certainly isn't great, but this is necessary to shorten the
pipeline.
>
> Also, it will make a diff a little bit better.
>
>> +
>> +debian-13-riscv64-gcc:
>> + extends: .gcc-riscv64-cross-build
>> + variables:
>> + CONTAINER: debian:13-riscv64
>> + KBUILD_DEFCONFIG: tiny64_defconfig
>> + HYPERVISOR_ONLY: y
>> +
>> .riscv-fixed-randconfig:
>> variables: &riscv-fixed-randconfig
>> EXTRA_FIXED_RANDCONFIG: |
>> @@ -739,10 +753,10 @@ debian-12-riscv64-gcc:
>> CONFIG_VM_EVENT=n
>> CONFIG_XSM=n
>>
>> -debian-12-riscv64-gcc-randconfig:
>> +debian-13-riscv64-gcc-randconfig:
> Are we going to have randconfig build test only for Debian-13?
We only have finite test capacity.
>
>> extends: .gcc-riscv64-cross-build
>> variables:
>> - CONTAINER: debian:12-riscv64
>> + CONTAINER: debian:13-riscv64
>> KBUILD_DEFCONFIG: tiny64_defconfig
>> RANDCONFIG: y
>> <<: *riscv-fixed-randconfig
>> diff --git a/automation/gitlab-ci/test.yaml b/automation/gitlab-ci/test.yaml
>> index 2f6f3affa637..9acd984d294c 100644
>> --- a/automation/gitlab-ci/test.yaml
>> +++ b/automation/gitlab-ci/test.yaml
>> @@ -705,7 +705,7 @@ qemu-smoke-riscv64-gcc:
>> script:
>> - ./automation/scripts/qemu-smoke-riscv64.sh 2>&1 | tee ${LOGFILE}
>> needs:
>> - - debian-12-riscv64-gcc-debug
>> + - debian-13-riscv64-gcc-debug
> The same as above, are we going to run smoke tests only for Debian-13?
Again, test capacity. Even for x86 and ARM, we only have one main build
under test.
>
> If the answer to this and the question above is “yes,” then (probably
> keeping the order — first debian-12, then debian-13 — for the jobs):
> Reviewed-by: Oleksii Kurochko <oleksii.kurochko@gmail.com>
Sorry, but rearranging is one thing that can't really happen. Are you
happy with my justification?
~Andrew
next prev parent reply other threads:[~2025-08-11 9:56 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-08-09 22:12 [PATCH for-4.21 0/5] CI: Add Debian Trixie Andrew Cooper
2025-08-09 22:12 ` [PATCH 1/5] CI: Trixie containers Andrew Cooper
[not found] ` <37edbe9d-3c14-422b-b21b-49a5fa25a453@gmail.com>
2025-08-11 9:56 ` Andrew Cooper
2025-08-09 22:12 ` [PATCH 2/5] CI: Update ppc64 to use Debian Trixie Andrew Cooper
2025-08-13 15:16 ` Anthony PERARD
2025-09-10 15:56 ` Andrew Cooper
2025-08-09 22:12 ` [PATCH 3/5] CI: Update riscv64 " Andrew Cooper
2025-08-11 8:43 ` Oleksii Kurochko
2025-08-11 9:56 ` Andrew Cooper [this message]
2025-08-11 15:23 ` Oleksii Kurochko
2025-08-09 22:12 ` [PATCH 4/5] stubdom: Fix -Wimplicit-int in newlib Andrew Cooper
2025-08-10 6:14 ` Jürgen Groß
2025-08-09 22:12 ` [PATCH 5/5] CI: Update x86 to use Debian Trixie Andrew Cooper
2025-08-11 8:32 ` [PATCH for-4.21 0/5] CI: Add " Oleksii Kurochko
2025-09-09 11:48 ` Marek Marczykowski-Górecki
2025-09-09 21:53 ` Stefano Stabellini
2025-09-11 7:48 ` Oleksii Kurochko
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=2e3412e8-9d62-449b-87e6-22d34ce06e30@citrix.com \
--to=andrew.cooper3@citrix.com \
--cc=anthony.perard@vates.tech \
--cc=cardoe@cardoe.com \
--cc=jbeulich@suse.com \
--cc=julien@xen.org \
--cc=marmarek@invisiblethingslab.com \
--cc=michal.orzel@amd.com \
--cc=oleksii.kurochko@gmail.com \
--cc=roger.pau@citrix.com \
--cc=sanastasio@raptorengineering.com \
--cc=sstabellini@kernel.org \
--cc=victorm.lira@amd.com \
--cc=xen-devel@lists.xenproject.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.