Re: gitlab-ci: Do not use the standard container images from gitlab

2020-06-07 Thread Sam Eiderman
I see, thanks for the clarification. However sometimes builds usually do tend to work on Ubuntu but fail to work on Debian since it's not always a 1-1 (as in this case) - so you might want to consider to keep testing Debian together with Ubuntu. Regarding the Ubuntu 20 problem - have you tried "e

Re: gitlab-ci: Do not use the standard container images from gitlab

2020-06-06 Thread Thomas Huth
On 06/06/2020 14.38, Sam Eiderman wrote: > Thanks for the link > > I do believe that the correct approach for me is to rename > BITS_PER_LONG to __BITS_PER_LONG (I just added a sed command in my > Dockerfile) and move on with my particular usage, however I am just > wondering whether dropping debi

Re: gitlab-ci: Do not use the standard container images from gitlab

2020-06-06 Thread Sam Eiderman
Thanks for the link I do believe that the correct approach for me is to rename BITS_PER_LONG to __BITS_PER_LONG (I just added a sed command in my Dockerfile) and move on with my particular usage, however I am just wondering whether dropping debian10/ubuntu20 in the official qemu ci/ pipeline until

Re: gitlab-ci: Do not use the standard container images from gitlab

2020-06-06 Thread Alex Bennée
Sam Eiderman writes: > Hi, > > I am using debian 10 container to compile qemu too. > > I think that what happens here is that > > /usr/include/linux/swab.h > > Uses BITS_PER_LONG instead of __BITS_PER_LONG which is actually defined before > in qemu at: That is indeed the error - we are just

gitlab-ci: Do not use the standard container images from gitlab

2020-06-06 Thread Sam Eiderman
Hi, I am using debian 10 container to compile qemu too. I think that what happens here is that /usr/include/linux/swab.h Uses BITS_PER_LONG instead of __BITS_PER_LONG which is actually defined before in qemu at: include/qemu/bitops.h:#define BITS_PER_LONG (sizeof (unsigned long

[PULL 6/7] gitlab-ci: Do not use the standard container images from gitlab

2020-05-28 Thread Thomas Huth
Currently all pipelines of the gitlab CI are failing, except for the "build-user" pipeline. There is an issue with the default container image (likely Debian stable) where they imported something bad in one of the system headers: /usr/include/linux/swab.h: In function '__swab': /builds/huth/qemu

Re: [PATCH 5/7] gitlab-ci: Do not use the standard container images from gitlab

2020-05-28 Thread Alex Bennée
Thomas Huth writes: > Currently all pipelines of the gitlab CI are failing, except for the > "build-user" pipeline. There is an issue with the default container > image (likely Debian stable) where they imported something bad in one > of the system headers: > > /usr/include/linux/swab.h: In fu

[PATCH 5/7] gitlab-ci: Do not use the standard container images from gitlab

2020-05-25 Thread Thomas Huth
Currently all pipelines of the gitlab CI are failing, except for the "build-user" pipeline. There is an issue with the default container image (likely Debian stable) where they imported something bad in one of the system headers: /usr/include/linux/swab.h: In function '__swab': /builds/huth/qemu