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 29971A0A0B; Mon, 1 Feb 2021 15:31:36 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 9B8E940693; Mon, 1 Feb 2021 15:31:35 +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 6DEDA40687 for ; Mon, 1 Feb 2021 15:31:34 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1612189893; 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: content-transfer-encoding:content-transfer-encoding; bh=nnMP3Q+/TsDncflxgm8AcdRlc1d2UujgGLaT0s4vTAA=; b=AHhWV8/I1kTRYr3YnW/pdycwSH0mQSLg4XvCIFpxRvZQHedKmDIG1Pv/+7VTHxCSKn5/eG AInKeRLMrtAQ7DWTVlv3VXwOUw1BiWYcdF9mckH73swPLk95MDYAXE33E6asQtbw5skNh7 fwvqcgWrJ73b58xl0odUdbL8ALAUgF8= 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-464--5ipqWgtMmKCEeY-sVSd3g-1; Mon, 01 Feb 2021 09:31:30 -0500 X-MC-Unique: -5ipqWgtMmKCEeY-sVSd3g-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 744C3835DE2; Mon, 1 Feb 2021 14:31:29 +0000 (UTC) Received: from dmarchan.remote.csb (unknown [10.40.193.163]) by smtp.corp.redhat.com (Postfix) with ESMTP id 3C2A65D735; Mon, 1 Feb 2021 14:31:26 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: aconole@redhat.com, i.maximets@ovn.org, Michael Santana Date: Mon, 1 Feb 2021 15:30:59 +0100 Message-Id: <20210201143059.8626-1-david.marchand@redhat.com> 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=david.marchand@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Subject: [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" 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 -- 2.23.0