Vitalio

Results 142 comments of Vitalio

> BTW, we're seeing many CI failures with QEMU reporting "hardware error". I sometimes have to re-run jobs a few times until we get all-green again. Maybe this means we're...

> Seems to be even before Linux boot "KVM: entry failed, hardware error 0xffffffff". As I remember there is not KVM on github actions, so it should not even try...

As I remember there was [some problems with bionic](https://github.com/lkrg-org/lkrg/pull/61) but maybe they are gone already. I will look again.

> (BTW, the flag was added to GCC in version 10). Yes, but it's only stabilized and became more useful than experimental in gcc-12 so I would not recommend previous...

If you just putting package version into SONAME — this is wrong, because these are different things. See for reference: https://en.wikipedia.org/wiki/Soname Libtool rule of soversion (library version) update https://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html (Note...

JFYI, @ldv-alt suggested a patch like this: ```diff diff --git a/src/Makefile b/src/Makefile index 6be5361..313a4b9 100644 --- a/src/Makefile +++ b/src/Makefile @@ -8,6 +8,7 @@ else msg = @printf ' %-8s %s%s\n'...

Applying the patch I see that you actually changed ABI, so perhaps SONAME change was intended (to correspond with library major version)? (Than was slightly confusing.) ``` $ abipkgdiff /ALT/Sisyphus/files/x86_64/RPMS/libbpf-0.8.1-alt1.x86_64.rpm...

Test run with actually verbose output: ``` builder@x86_64:~/RPM/BUILD/stgit-2.3.2/t$ make all STG_TEST_OPTS=-v STG_PROFILE=release ... *** t1205-push-subdir.sh *** Initialized empty Git repository in /usr/src/RPM/BUILD/stgit-2.3.2/t/trash directory.t1205-push-subdir/.git/ [master (root-commit) a03420f] empty start Author: A...

Our package build system builds everything on tmpfs. But I just tried to run the tests on ext4 and failures are the same. Git version: ``` builder@x86_64:~/RPM/BUILD/stgit-2.3.2$ git --version git...

Maybe you can skip the test if git is not enough version? Since I make package for ALT Linux -version of git isn't my choice, but I wish to run...