From: Jan Kiszka <jan.kiszka@siemens.com>
To: Uladzimir Bely <ubely@ilbers.de>,
isar-users <isar-users@googlegroups.com>
Subject: Re: Offline build broken with sbuild?
Date: Wed, 23 Nov 2022 17:17:31 +0100 [thread overview]
Message-ID: <ac98bf24-2437-18b6-83ad-1fd99cc7cb3d@siemens.com> (raw)
In-Reply-To: <d07c20f7-f029-c4bd-eba2-b0858cfd9388@siemens.com>
On 23.11.22 16:49, Jan Kiszka wrote:
> On 22.11.22 14:11, Jan Kiszka wrote:
>> On 22.11.22 13:15, Uladzimir Bely wrote:
>>> In the email from Monday, 21 November 2022 10:36:43 +03 user Uladzimir Bely
>>> wrote:
>>>>
>>>> I'll try to check more things (e.g. Isar revision mentioned in the bug;
>>>> complete image build, etc), but at the first glance sbuild-chroot-host looks
>>>> to be cached OK, at least with the latest Isar.
>>>>
>>>
>>> So, I've got the following result for now:
>>>
>>> - In Isar itself cached cross-build works well (while both HOST_DISTRO and
>>> DISTRO are equal). The only exception: raspberry targets, while DISTRO and
>>> HOST_DISTRO are different by nature.
>>>
>>> - In meta-iot2050, cached cross-build doesn't work for both "sbuild" and "pre-
>>> sbuild" cases. Evend "isar-bootstrap-host" task doesn't work for cached build.
>>>
>>> I've applied the following patch for now and it at least fixed sbuild-chroot-
>>> host task for cached build. Waiting for full build finished and will update
>>> you with the result.
>>>
>>> diff --git a/meta/recipes-devtools/base-apt/base-apt.bb b/meta/recipes-
>>> devtools/base-apt/base-apt.bb
>>> index 506a28f..316960d 100644
>>> --- a/meta/recipes-devtools/base-apt/base-apt.bb
>>> +++ b/meta/recipes-devtools/base-apt/base-apt.bb
>>> @@ -13,7 +13,9 @@ KEYFILES ?= ""
>>> BASE_REPO_FEATURES ?= ""
>>>
>>> populate_base_apt() {
>>> - find "${DEBDIR}"/"${DISTRO}" -name '*\.deb' | while read package; do
>>> + distro="${BASE_DISTRO}-${BASE_DISTRO_CODENAME}"
>>> +
>>> + find "${DEBDIR}"/"${distro}" -name '*\.deb' | while read package; do
>>> # NOTE: due to packages stored by reprepro are not modified, we can
>>> # use search by filename to check if package is already in repo. In
>>> # addition, md5sums are compared to ensure that the package is the
>>> @@ -38,7 +40,7 @@ populate_base_apt() {
>>> "${package}"
>>> done
>>>
>>> - find "${DEBSRCDIR}"/"${DISTRO}" -name '*\.dsc' | while read package; do
>>> + find "${DEBSRCDIR}"/"${distro}" -name '*\.dsc' | while read package; do
>>> repo_add_srcpackage "${REPO_BASE_DIR}"/"${BASE_DISTRO}" \
>>> "${REPO_BASE_DB_DIR}"/"${BASE_DISTRO}" \
>>> "${BASE_DISTRO_CODENAME}" \
>>>
>>>
>>
>> Ah, another DISTRO-override issue! Hope we don't have more of that type
>> in the core. Maybe worth to scan again and check.
>>
>> Thanks for analyzing and (likely) fixing!
>>
>
> sbuild-chroot-host is indeed working now, but there are likely more
> cases with (custom) DISTRO vs. BASE_DISTRO:
>
> ERROR: isar-bootstrap-target-1.0-r0 do_bootstrap: ExecutionError('/build/tmp/work/iot2050-debian-arm64/isar-bootstrap-target/1.0-r0/temp/run.do_bootstrap.21764', 1, None, None)
> ERROR: Logfile of failure stored in: /build/tmp/work/iot2050-debian-arm64/isar-bootstrap-target/1.0-r0/temp/log.do_bootstrap.21764
> Log data follows:
> | DEBUG: Executing python function sstate_task_prefunc
> | DEBUG: Python function sstate_task_prefunc finished
> | DEBUG: Executing shell function do_bootstrap
> | W: qemu-debootstrap is deprecated. Please use regular debootstrap directly
> | I: Running command: debootstrap --verbose --variant=minbase --include=locales --no-check-gpg --arch=arm64 --components=main,contrib,non-free bullseye /build/tmp/work/iot2050-debian-arm64/isar-bootstrap-target/1.0-r0/rootfs file:///build/tmp/deploy/base-apt/iot2050-debian/apt/debian
> | I: Retrieving InRelease
> | I: Retrieving Release
> | I: Retrieving Packages
> | I: Validating Packages
> | I: Resolving dependencies of required packages...
> | I: Resolving dependencies of base packages...
> | I: Checking component main on file:///build/tmp/deploy/base-apt/iot2050-debian/apt/debian...
> | E: Couldn't find these debs: apt
> | WARNING: exit code 1 from a shell command.
> | ERROR: ExecutionError('/build/tmp/work/iot2050-debian-arm64/isar-bootstrap-target/1.0-r0/temp/run.do_bootstrap.21764', 1, None, None)
> ERROR: Task (/build/../work/isar/meta/recipes-core/isar-bootstrap/isar-bootstrap-target.bb:do_bootstrap) failed with exit code '1'
>
I think we have two problems here:
1. base-apt is set up in sources-list using the BASE_DISTRO, but we are
creating it using DISTRO, not only in bast-apt, also dpkg-base
2. the whole base-apt caching does not yet consider
BASE_DISTRO(DISTRO) != BASE_DISTRO(HOST_DISTRO), and that maybe even
before all the sbuild changes
The latter should break the Raspian case.
Jan
--
Siemens AG, Technology
Competence Center Embedded Linux
next prev parent reply other threads:[~2022-11-23 16:17 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-11-21 6:49 Jan Kiszka
2022-11-21 7:36 ` Uladzimir Bely
2022-11-22 12:15 ` Uladzimir Bely
2022-11-22 13:11 ` Jan Kiszka
2022-11-23 15:49 ` Jan Kiszka
2022-11-23 16:17 ` Jan Kiszka [this message]
2022-11-24 6:57 ` Uladzimir Bely
2022-11-24 7:32 ` Jan Kiszka
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=ac98bf24-2437-18b6-83ad-1fd99cc7cb3d@siemens.com \
--to=jan.kiszka@siemens.com \
--cc=isar-users@googlegroups.com \
--cc=ubely@ilbers.de \
/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