Re: Some questions about Azure CI
Michael Kubacki
My understanding is that you were referring to the document on my fork being difficult to access and you shared a link to your CI results that does not have the message pointing to the wiki page yet.
toggle quoted messageShow quoted text
This is all correct. The wiki content has moved from my fork to the official wiki page and the patch that adds the message to the CI results has not been merged yet. It is posted on the mailing list here and waiting for reviews: https://edk2.groups.io/g/devel/message/89098 --- As for your build failing between yesterday and today, note that the builds are based on different commits. Yesterday: https://github.com/loongson/edk2/commit/8d100910a2ad98b71acaabc0dcdd70be7e0eba63 Today: https://github.com/loongson/edk2/commit/6ca5d9d6c55ca773a652fe52508e980c7aa372d3 The commits have different content. In particular, I took a quick look at a build that is failing now (Build_GCC5 TARGET_MDEMODULE_DEBUG) but previously succeeded. The compilation step is failing for reasons such as the following: INFO - /home/vsts/work/1/s/MdePkg/Include/LoongArch64/ProcessorBind.h:35:24: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘UINT16’ INFO - 35 | typedef unsigned shor UINT16; Notice, that there is a typo introduced in the new commit. "shor" versus "short", this is what is causing compilation failure. Here is a comparison of those two commits showing the line in ProcessorBind.h that is causing the problem: https://github.com/loongson/edk2/compare/8d10091..6ca5d9d#diff-50b24eb92c5785d5c70097a70104040fcacfb70225dd8196c1a97ef3bbb305c8R35-R36 Regards, Michael
On 4/20/2022 7:08 AM, Chao Li wrote:
Hi Micheal,
|
|