From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 35180A0A0B; Mon, 1 Feb 2021 15:41:24 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id AE841160652; Mon, 1 Feb 2021 15:41:23 +0100 (CET) Received: from relay4-d.mail.gandi.net (relay4-d.mail.gandi.net [217.70.183.196]) by mails.dpdk.org (Postfix) with ESMTP id C110040693 for ; Mon, 1 Feb 2021 15:41:22 +0100 (CET) X-Originating-IP: 78.45.89.65 Received: from [192.168.1.23] (ip-78-45-89-65.net.upcbroadband.cz [78.45.89.65]) (Authenticated sender: i.maximets@ovn.org) by relay4-d.mail.gandi.net (Postfix) with ESMTPSA id 77A0DE0003; Mon, 1 Feb 2021 14:41:21 +0000 (UTC) To: David Marchand , dev@dpdk.org Cc: aconole@redhat.com, i.maximets@ovn.org, Michael Santana References: <20210201143059.8626-1-david.marchand@redhat.com> From: Ilya Maximets Message-ID: <6c81a354-4ac1-3f1a-9a2e-99a87550320d@ovn.org> Date: Mon, 1 Feb 2021 15:41:20 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.6.0 MIME-Version: 1.0 In-Reply-To: <20210201143059.8626-1-david.marchand@redhat.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH] ci: ignore APT update failure in GitHub Actions X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On 2/1/21 3:30 PM, David Marchand wrote: > Ubuntu 18.04 GHA virtual machine images point at an invalid APT > repository. > We have no control over this, simply ignore the failure. > > This was caught by Ilya for OVS and the robot just hit the same issue > for DPDK: > > """ > Get:46 http://security.ubuntu.com/ubuntu bionic-security/restricted > Translation-en [29.9 kB] > Get:47 http://security.ubuntu.com/ubuntu bionic-security/universe amd64 > Packages [1104 kB] > Get:48 http://security.ubuntu.com/ubuntu bionic-security/universe > Translation-en [247 kB] > Reading package lists... > E: The repository 'https://apt.postgresql.org/pub/repos/apt bionic-pgdg > Release' no longer has a Release file. > Error: Process completed with exit code 100. > """ > > Fixes: 9d620630ea30 ("ci: fix package installation in GitHub Actions") > > Signed-off-by: David Marchand > --- > .github/workflows/build.yml | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml > index a5b579adda..2fd1dde86f 100644 > --- a/.github/workflows/build.yml > +++ b/.github/workflows/build.yml > @@ -88,7 +88,7 @@ jobs: > path: reference > key: ${{ steps.get_ref_keys.outputs.abi }} > - name: Update APT cache > - run: sudo apt update > + run: sudo apt update || true > - name: Install packages > run: sudo apt install -y ccache libnuma-dev python3-setuptools > python3-wheel python3-pip python3-pyelftools ninja-build libbsd-dev > LGTM, Acked-by: Ilya Maximets