From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail-wr1-f50.google.com (mail-wr1-f50.google.com [209.85.221.50]) by mx.groups.io with SMTP id smtpd.web12.619.1585597894014299745 for ; Mon, 30 Mar 2020 12:51:34 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@linaro.org header.s=google header.b=DF/Zrv2W; spf=pass (domain: linaro.org, ip: 209.85.221.50, mailfrom: ard.biesheuvel@linaro.org) Received: by mail-wr1-f50.google.com with SMTP id j17so23112543wru.13 for ; Mon, 30 Mar 2020 12:51:33 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :content-transfer-encoding; bh=ovV+F6mPysTWFn+tzEU0UM1fw6xXFn/Wj7s+ro2YvQE=; b=DF/Zrv2WdGZZIoUBQO2ZZfoAtwsVPtYPgKLeT4L8mRzM7QQyGri9+EVPn5IYlCXVJf cp4WJQI3GuPI3wrz64mX3PRMw261zUrQCFvBXcpaw7v4QQaXlUJtcptoPKgDdwmUEAmY Y4jL2odF5ARs0X+SRDxojNzy/Y1eSSVcmJvjNOEbsBomeOzFQK1XT3YW++wQtvnMt4Jz QMmvfff0mCuC86o6Og1zdPbUfYk52vE5xReUGNagGCHHFmceIbbXf4xtSZChSwy1GtZq 7EniEGVTFBi3e77Be0FCNGnqo5SwuH+untF8kq5nDbGdEdQ2+KeaBtGB0IzSult8BTQF Av1g== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:content-transfer-encoding; bh=ovV+F6mPysTWFn+tzEU0UM1fw6xXFn/Wj7s+ro2YvQE=; b=nLF58IGQSuTKwiAo6naFzjGs1hHvIAoKL5NN3E3bvyYw1IghKh9Rwu8CQFJq9OaNit owuJ9X7ibHiREXvS39fslWt2CkvD3v8bW5d78bFelv3p7nZfOgg9DQlP9XEeTrljikgK gWbajaMjNMkg3uBAbhr7xgUkMq1EOEpSYFp6+m3SKensmkRxIO+JEytKBJQkJdGbYQOA fJiZYaRfdwxrNjMiFL+hqPJSKY1y9pGTVOCzoBJWU3Y++roOMPx1WNyBBq1o4YBw9bla 7gRlyKlZ67yYWWhbGcMmxtq85gC9Y+d4JX/ksmioHT5fU5ObKPx9rRtcWxjgwfJi8sAu eRUQ== X-Gm-Message-State: ANhLgQ2lH84qUvfDmiFFxRKAo2+tvJ8lRvNRBu5hvEv6tYfgYuvb1EN8 FZlp5izMxDuV3ew2vBlXRduBciPYovMO49iA+h6xWSehKOw= X-Google-Smtp-Source: ADFU+vt30RLmv6su7A7+tkk5eOAPCEdJisvgi6rsIyxoH8iESO6cEonljnDTMaEL+OduNc+OSCzSu7O8NtBpL+DjwhI= X-Received: by 2002:adf:afdb:: with SMTP id y27mr16715456wrd.208.1585597892294; Mon, 30 Mar 2020 12:51:32 -0700 (PDT) MIME-Version: 1.0 References: <24009.1585595252267550492@groups.io> In-Reply-To: <24009.1585595252267550492@groups.io> From: "Ard Biesheuvel" Date: Mon, 30 Mar 2020 21:51:21 +0200 Message-ID: Subject: Re: [edk2-devel] [PATCH] .azurepipelines: Enable CI for OvmfPkg and EmulatorPkg To: edk2-devel-groups-io , Sean Brogan Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable On Mon, 30 Mar 2020 at 21:07, Sean via Groups.Io wrote: > > > > On Mon, Mar 30, 2020 at 10:44 AM, Ard Biesheuvel wrote: > > Thanks. But can I get these actions to trigger from my branch as well? > Or do I need special powers for that? > > Right now it requires manually running so it requires "special powers". := ) > I am happy to get this into a branch that you can PR against and on each = PR it will run. Basically you would just submit PRs against the branch in = my edk2 fork. > > I have it running successfully on GCC5 toolchain and AARCH64 > https://dev.azure.com/tianocore/edk2-ci-play/_build/results?buildId=3D497= 8&view=3Dresults > > I don't see any output from the Qemu boot process even for debug. Am I m= issing a parameter? > qemu-system-aarch64 -M virt -cpu cortex-a57 -bios /home/vsts/work/1/s/Bui= ld/ArmVirtQemu-AARCH64/DEBUG_GCC5/FV/QEMU_EFI.fd -m 1024 -net none -drive f= ile=3Dfat:rw:/home/vsts/work/1/s/Build/ArmVirtQemu-AARCH64/DEBUG_GCC5/Virtu= alDrive,format=3Draw,media=3Ddisk -display none > You need either -nographic or -serial stdio to get the serial output to go to QEMU's stdout. The latter is probably better, since the former gives you the serial stdout multiplexed with the QEMU console, accessible via special control sequences, and the latter only gives you the serial output stream.