On Fri, 26 Feb 2021, Andrew Cooper wrote:
> Looks like a copy&paste error.
>
> Fixes: f6e1d8515d7 ("automation: add alpine linux x86 build jobs")
> Signed-off-by: Andrew Cooper <[email protected]>
Thanks for the patch and of course it is correct
Acked-by: Stefano Stabellini <[email protected]>
However unfortunately it breaks the Alpine Linux gitlab-ci again :-(
I created a branch with Roger's patches plus this patch. The two clang
Alpine Linux build jobs fail:
https://gitlab.com/xen-project/people/sstabellini/xen/-/jobs/1059686530
https://gitlab.com/xen-project/people/sstabellini/xen/-/jobs/1059686532
The error is the following:
<built-in>:3:10: fatal error: 'cstring' file not found
#include "cstring"
^~~~~~~~~
1 error generated.
make[10]: *** [Makefile:120: headers++.chk] Error 1
make[10]: *** Waiting for unfinished jobs....
> ---
> CC: Doug Goldstein <[email protected]>
> CC: Ian Jackson <[email protected]>
> CC: Stefano Stabellini <[email protected]>
> ---
> automation/gitlab-ci/build.yaml | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/automation/gitlab-ci/build.yaml b/automation/gitlab-ci/build.yaml
> index d00b8a5123..23ab81d892 100644
> --- a/automation/gitlab-ci/build.yaml
> +++ b/automation/gitlab-ci/build.yaml
> @@ -443,13 +443,13 @@ alpine-3.12-gcc-debug:
> allow_failure: true
>
> alpine-3.12-clang:
> - extends: .gcc-x86-64-build
> + extends: .clang-x86-64-build
> variables:
> CONTAINER: alpine:3.12
> allow_failure: true
>
> alpine-3.12-clang-debug:
> - extends: .gcc-x86-64-build-debug
> + extends: .clang-x86-64-build-debug
> variables:
> CONTAINER: alpine:3.12
> allow_failure: true
> --
> 2.11.0
>