Add FreeBSD 13.4 to CI (#9109)

* Add FreeBSD 13.4 to CI.

* iso_extract won't work.

* pkgng: jail won't work either.
pull/9114/head
Felix Fontein 2024-11-08 23:05:35 +01:00 committed by GitHub
parent e13d6de250
commit 04c2ad18da
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 7 additions and 1 deletions

View File

@ -196,6 +196,8 @@ stages:
test: rhel/9.4 test: rhel/9.4
- name: FreeBSD 14.1 - name: FreeBSD 14.1
test: freebsd/14.1 test: freebsd/14.1
- name: FreeBSD 13.4
test: freebsd/13.4
groups: groups:
- 1 - 1
- 2 - 2

View File

@ -15,5 +15,6 @@ skip/rhel9.4 # FIXME
skip/freebsd12.4 # FIXME skip/freebsd12.4 # FIXME
skip/freebsd13.2 # FIXME skip/freebsd13.2 # FIXME
skip/freebsd13.3 # FIXME skip/freebsd13.3 # FIXME
skip/freebsd13.4 # FIXME
skip/freebsd14.0 # FIXME skip/freebsd14.0 # FIXME
skip/freebsd14.1 # FIXME skip/freebsd14.1 # FIXME

View File

@ -518,6 +518,9 @@
# NOTE: FreeBSD 13.3 fails to update the package catalogue for unknown reasons (someone with FreeBSD # NOTE: FreeBSD 13.3 fails to update the package catalogue for unknown reasons (someone with FreeBSD
# knowledge has to take a look) # knowledge has to take a look)
# #
# NOTE: FreeBSD 13.4 fails to update the package catalogue for unknown reasons (someone with FreeBSD
# knowledge has to take a look)
#
# NOTE: FreeBSD 14.0 fails to update the package catalogue for unknown reasons (someone with FreeBSD # NOTE: FreeBSD 14.0 fails to update the package catalogue for unknown reasons (someone with FreeBSD
# knowledge has to take a look) # knowledge has to take a look)
# #
@ -528,7 +531,7 @@
# https://github.com/ansible-collections/community.general/issues/5795 # https://github.com/ansible-collections/community.general/issues/5795
when: >- when: >-
(ansible_distribution_version is version('12.01', '>=') and ansible_distribution_version is version('12.3', '<')) (ansible_distribution_version is version('12.01', '>=') and ansible_distribution_version is version('12.3', '<'))
or (ansible_distribution_version is version('13.4', '>=') and ansible_distribution_version is version('14.0', '<')) or (ansible_distribution_version is version('13.5', '>=') and ansible_distribution_version is version('14.0', '<'))
or ansible_distribution_version is version('14.2', '>=') or ansible_distribution_version is version('14.2', '>=')
block: block:
- name: Setup testjail - name: Setup testjail