From b371bd6a5b3015dae44f194b37f7bd44884f69ec Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Sat, 10 Sep 2022 11:29:19 +0200 Subject: [PATCH] Fix pkgng tests (#5266) * Now there are problems with 13.0 as well. But maybe 13.1 works again? * 13.1 still does not work, maybe 13.2 will (not yet available in CI)... --- tests/integration/targets/pkgng/tasks/freebsd.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tests/integration/targets/pkgng/tasks/freebsd.yml b/tests/integration/targets/pkgng/tasks/freebsd.yml index a864daa130..d17a3083d3 100644 --- a/tests/integration/targets/pkgng/tasks/freebsd.yml +++ b/tests/integration/targets/pkgng/tasks/freebsd.yml @@ -465,10 +465,15 @@ # NOTE: FreeBSD 12.0 test runner receives a "connection reset by peer" after ~20% downloaded so we are # only running this on 12.1 or higher # + # NOTE: FreeBSD 13.0 fails to update the package catalogue for unknown reasons (someone with FreeBSD + # knowledge has to take a look) + # # NOTE: FreeBSD 13.1 fails to update the package catalogue for unknown reasons (someone with FreeBSD # knowledge has to take a look) # - when: ansible_distribution_version is version('12.01', '>=') and ansible_distribution_version is version('13.1', '<') + when: >- + (ansible_distribution_version is version('12.01', '>=') and ansible_distribution_version is version('13.0', '<')) + or ansible_distribution_version is version('13.2', '>=') block: - name: Setup testjail include: setup-testjail.yml