On 2/1/21 12:56 PM, Ilya Maximets wrote: > 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. > > Proviously 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.") > Signed-off-by: Ilya Maximets <[email protected]> > --- > .github/workflows/build-and-test.yml | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/.github/workflows/build-and-test.yml > b/.github/workflows/build-and-test.yml > index e24970505..1bb72bbb1 100644 > --- a/.github/workflows/build-and-test.yml > +++ b/.github/workflows/build-and-test.yml > @@ -136,7 +136,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 }} >
Thanks, Aaron and David! Applied to master and backported down to 2.12. Best regards, Ilya Maximets. _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
