summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorIlya Maximets <i.maximets@ovn.org>2021-02-01 12:41:35 +0100
committerIlya Maximets <i.maximets@ovn.org>2021-02-01 15:32:23 +0100
commitd5c429a303341c2bf07090193e640434b3c51080 (patch)
tree0fe376aa863a7cf1c194389593a8483bedaa3b3c /.github/workflows
parent492bbb54c064f9eebe89ee81e5d9fbece56138ff (diff)
downloadopenvswitch-d5c429a303341c2bf07090193e640434b3c51080.tar.gz
github: Don't fail the job if 'apt update' failed.
Some repositories that are enabled in GHA are not stable and lead to 'apt update' failures: E: The repository 'https://apt.postgresql.org/pub/repos/apt bionic-pgdg Release' no longer has a Release file. This causes the job failure. In most cases we don't really need any packages from these failed repositories, so we could try to continue the job. Previously this kind of failures happened on older branches with ubuntu 16.04 base image, so we have this workaround already there. Now it started to fail on bionic images, so fixing there too. Fixes: 02f76fb42ae9 ("github: Fix Ubuntu package installation.") Acked-by: Aaron Conole <aconole@redhat.com> Acked-by: David Marchand <david.marchand@redhat.com> Signed-off-by: Ilya Maximets <i.maximets@ovn.org>
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/build-and-test.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml
index b29c300c5..c4487226b 100644
--- a/.github/workflows/build-and-test.yml
+++ b/.github/workflows/build-and-test.yml
@@ -134,7 +134,7 @@ jobs:
key: ${{ env.matrix_key }}-${{ env.ci_key }}
- name: update APT cache
- run: sudo apt update
+ run: sudo apt update || true
- name: install common dependencies
if: matrix.deb_package == ''
run: sudo apt install -y ${{ env.dependencies }}