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 AE97EA0A0B; Mon, 1 Feb 2021 17:17:28 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 38C8540693; Mon, 1 Feb 2021 17:17:28 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [63.128.21.124]) by mails.dpdk.org (Postfix) with ESMTP id 4852940687 for ; Mon, 1 Feb 2021 17:17:27 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1612196246; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=Fa7t5asoi9VslpSCX5ks0n2NOpN7k0hFfYkGKuweWWs=; b=bomxNhglLZdczHF6KKlqsZRgaiWcdIa3HYp68RD+He24s/FGNso3DePBPw7oaokaZfh5ur uxcndIemWfSev7W5uBJsGDsojhVg/bnNBJlJe9LuXt3vDga4kiLAkeLcP7WU5lZuovf083 S/ZC/KukqunrNtdf5OVZlZBtfzFv1S8= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-478-k1ZV4y9YMq2sgyfNlvNDoQ-1; Mon, 01 Feb 2021 11:17:23 -0500 X-MC-Unique: k1ZV4y9YMq2sgyfNlvNDoQ-1 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id B72C41012E71; Mon, 1 Feb 2021 16:17:04 +0000 (UTC) Received: from dhcp-25.97.bos.redhat.com (ovpn-114-243.rdu2.redhat.com [10.10.114.243]) by smtp.corp.redhat.com (Postfix) with ESMTPS id D201F5D6BA; Mon, 1 Feb 2021 16:17:03 +0000 (UTC) From: Aaron Conole To: David Marchand Cc: dev@dpdk.org, i.maximets@ovn.org, Michael Santana References: <20210201143059.8626-1-david.marchand@redhat.com> Date: Mon, 01 Feb 2021 11:17:03 -0500 In-Reply-To: <20210201143059.8626-1-david.marchand@redhat.com> (David Marchand's message of "Mon, 1 Feb 2021 15:30:59 +0100") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux) MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.15 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=aconole@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain 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" David Marchand writes: > 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 > --- Acked-by: Aaron Conole