1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

CI: Add FreeBSD 13.3 and 14.0 for devel, move FreeBSD 13.2 to stable-2.16 (#8122)

* Add FreeBSD 13.3 and 14.0 for devel, move FreeBSD 13.2 to stable-2.16.

* Skip some targets.

* Skip pkgng jail tests (again :( ).
This commit is contained in:
Felix Fontein 2024-03-21 22:15:52 +01:00 committed by GitHub
parent 69ab5eb110
commit 47b4cf766e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 18 additions and 5 deletions

View file

@ -191,8 +191,10 @@ stages:
test: macos/14.3 test: macos/14.3
- name: RHEL 9.3 - name: RHEL 9.3
test: rhel/9.3 test: rhel/9.3
- name: FreeBSD 13.2 - name: FreeBSD 13.3
test: freebsd/13.2 test: freebsd/13.3
- name: FreeBSD 14.0
test: freebsd/14.0
groups: groups:
- 1 - 1
- 2 - 2
@ -211,8 +213,8 @@ stages:
test: rhel/9.2 test: rhel/9.2
- name: RHEL 8.8 - name: RHEL 8.8
test: rhel/8.8 test: rhel/8.8
#- name: FreeBSD 13.2 - name: FreeBSD 13.2
# test: freebsd/13.2 test: freebsd/13.2
groups: groups:
- 1 - 1
- 2 - 2

View file

@ -4,3 +4,5 @@
azp/posix/2 azp/posix/2
skip/python2.7 # jc only supports python3.x skip/python2.7 # jc only supports python3.x
skip/freebsd13.3 # FIXME - ruyaml compilation fails
skip/freebsd14.0 # FIXME - ruyaml compilation fails

View file

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

View file

@ -515,11 +515,18 @@
# NOTE: FreeBSD 13.2 fails to update the package catalogue for unknown reasons (someone with FreeBSD # NOTE: FreeBSD 13.2 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.3 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
# knowledge has to take a look)
#
# See also # See also
# 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.3', '>=') or (ansible_distribution_version is version('13.4', '>=') and ansible_distribution_version is version('14.0', '<'))
or ansible_distribution_version is version('14.1', '>=')
block: block:
- name: Setup testjail - name: Setup testjail
include_tasks: setup-testjail.yml include_tasks: setup-testjail.yml