mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Finish updating CI (#8537)
* Uncomment TODO entries. * Exclude some tests that fail or are known to fail. * Also run extra VM tests on Ubuntu 24.04. * Fix condition. * More adjustments.
This commit is contained in:
parent
86f19cb5d3
commit
ecb68aa5d2
12 changed files with 42 additions and 14 deletions
|
@ -176,11 +176,10 @@ stages:
|
||||||
test: alpine/3.20
|
test: alpine/3.20
|
||||||
# - name: Fedora 40
|
# - name: Fedora 40
|
||||||
# test: fedora/40
|
# test: fedora/40
|
||||||
# TODO:
|
- name: Ubuntu 22.04
|
||||||
#- name: Ubuntu 22.04
|
test: ubuntu/22.04
|
||||||
# test: ubuntu/22.04
|
- name: Ubuntu 24.04
|
||||||
# - name: Ubuntu 24.04
|
test: ubuntu/24.04
|
||||||
# test: ubuntu/24.04
|
|
||||||
groups:
|
groups:
|
||||||
- vm
|
- vm
|
||||||
- stage: Remote_devel
|
- stage: Remote_devel
|
||||||
|
@ -193,9 +192,8 @@ stages:
|
||||||
targets:
|
targets:
|
||||||
- name: macOS 14.3
|
- name: macOS 14.3
|
||||||
test: macos/14.3
|
test: macos/14.3
|
||||||
# TODO:
|
- name: RHEL 9.4
|
||||||
#- name: RHEL 9.4
|
test: rhel/9.4
|
||||||
# test: rhel/9.4
|
|
||||||
- name: FreeBSD 14.0
|
- name: FreeBSD 14.0
|
||||||
test: freebsd/14.0
|
test: freebsd/14.0
|
||||||
groups:
|
groups:
|
||||||
|
@ -276,9 +274,8 @@ stages:
|
||||||
test: alpine320
|
test: alpine320
|
||||||
- name: Ubuntu 22.04
|
- name: Ubuntu 22.04
|
||||||
test: ubuntu2204
|
test: ubuntu2204
|
||||||
# TODO:
|
- name: Ubuntu 24.04
|
||||||
#- name: Ubuntu 24.04
|
test: ubuntu2404
|
||||||
# test: ubuntu2404
|
|
||||||
groups:
|
groups:
|
||||||
- 1
|
- 1
|
||||||
- 2
|
- 2
|
||||||
|
|
|
@ -18,3 +18,4 @@ skip/rhel9.0
|
||||||
skip/rhel9.1
|
skip/rhel9.1
|
||||||
skip/rhel9.2
|
skip/rhel9.2
|
||||||
skip/rhel9.3
|
skip/rhel9.3
|
||||||
|
skip/rhel9.4
|
||||||
|
|
|
@ -11,8 +11,10 @@
|
||||||
- name: Bail out if not supported
|
- name: Bail out if not supported
|
||||||
ansible.builtin.meta: end_play
|
ansible.builtin.meta: end_play
|
||||||
# TODO: remove Archlinux from the list
|
# TODO: remove Archlinux from the list
|
||||||
when: ansible_distribution in ('Alpine', 'openSUSE Leap', 'CentOS', 'Fedora', 'Archlinux')
|
# TODO: remove Ubuntu 24.04 (noble) from the list
|
||||||
|
when: >
|
||||||
|
ansible_distribution in ('Alpine', 'openSUSE Leap', 'CentOS', 'Fedora', 'Archlinux')
|
||||||
|
or (ansible_distribution == 'Ubuntu' and ansible_distribution_release in ['noble'])
|
||||||
|
|
||||||
- name: Remove ejabberd
|
- name: Remove ejabberd
|
||||||
ansible.builtin.package:
|
ansible.builtin.package:
|
||||||
|
|
|
@ -11,3 +11,4 @@ skip/rhel9.0 # See https://www.reddit.com/r/Fedora/comments/si7nzk/homectl/
|
||||||
skip/rhel9.1 # See https://www.reddit.com/r/Fedora/comments/si7nzk/homectl/
|
skip/rhel9.1 # See https://www.reddit.com/r/Fedora/comments/si7nzk/homectl/
|
||||||
skip/rhel9.2 # See https://www.reddit.com/r/Fedora/comments/si7nzk/homectl/
|
skip/rhel9.2 # See https://www.reddit.com/r/Fedora/comments/si7nzk/homectl/
|
||||||
skip/rhel9.3 # See https://www.reddit.com/r/Fedora/comments/si7nzk/homectl/
|
skip/rhel9.3 # See https://www.reddit.com/r/Fedora/comments/si7nzk/homectl/
|
||||||
|
skip/rhel9.4 # See https://www.reddit.com/r/Fedora/comments/si7nzk/homectl/
|
||||||
|
|
|
@ -10,3 +10,5 @@ skip/freebsd # no iptables/netfilter (Linux specific)
|
||||||
skip/osx # no iptables/netfilter (Linux specific)
|
skip/osx # no iptables/netfilter (Linux specific)
|
||||||
skip/macos # no iptables/netfilter (Linux specific)
|
skip/macos # no iptables/netfilter (Linux specific)
|
||||||
skip/aix # no iptables/netfilter (Linux specific)
|
skip/aix # no iptables/netfilter (Linux specific)
|
||||||
|
|
||||||
|
skip/ubuntu22.04 # TODO there's a problem here!
|
||||||
|
|
|
@ -11,6 +11,7 @@ skip/rhel9.0 # FIXME
|
||||||
skip/rhel9.1 # FIXME
|
skip/rhel9.1 # FIXME
|
||||||
skip/rhel9.2 # FIXME
|
skip/rhel9.2 # FIXME
|
||||||
skip/rhel9.3 # FIXME
|
skip/rhel9.3 # FIXME
|
||||||
|
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
|
||||||
|
|
|
@ -11,4 +11,4 @@
|
||||||
- include_tasks: ubuntu.yml
|
- include_tasks: ubuntu.yml
|
||||||
when:
|
when:
|
||||||
- ansible_distribution == 'Ubuntu'
|
- ansible_distribution == 'Ubuntu'
|
||||||
- ansible_distribution_release not in ['focal', 'jammy']
|
- ansible_distribution_release not in ['focal', 'jammy', 'noble']
|
||||||
|
|
|
@ -11,4 +11,5 @@ skip/rhel9.0
|
||||||
skip/rhel9.1
|
skip/rhel9.1
|
||||||
skip/rhel9.2
|
skip/rhel9.2
|
||||||
skip/rhel9.3
|
skip/rhel9.3
|
||||||
|
skip/rhel9.4
|
||||||
skip/freebsd
|
skip/freebsd
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
---
|
||||||
|
# Copyright (c) Ansible Project
|
||||||
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
|
keytool_package_names:
|
||||||
|
- ca-certificates-java
|
||||||
|
- openjdk-21-jre-headless
|
|
@ -0,0 +1,13 @@
|
||||||
|
---
|
||||||
|
# Copyright (c) Ansible Project
|
||||||
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
|
postgresql_packages:
|
||||||
|
- "postgresql"
|
||||||
|
- "postgresql-common"
|
||||||
|
- "python3-psycopg2"
|
||||||
|
|
||||||
|
pg_hba_location: "/etc/postgresql/16/main/pg_hba.conf"
|
||||||
|
pg_dir: "/var/lib/postgresql/16/main"
|
||||||
|
pg_ver: 16
|
1
tests/integration/targets/setup_snap/tasks/D-RedHat-9.4.yml
Symbolic link
1
tests/integration/targets/setup_snap/tasks/D-RedHat-9.4.yml
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
nothing.yml
|
|
@ -13,6 +13,7 @@ skip/rhel9.0 # FIXME
|
||||||
skip/rhel9.1 # FIXME
|
skip/rhel9.1 # FIXME
|
||||||
skip/rhel9.2 # FIXME
|
skip/rhel9.2 # FIXME
|
||||||
skip/rhel9.3 # FIXME
|
skip/rhel9.3 # FIXME
|
||||||
|
skip/rhel9.4 # FIXME
|
||||||
skip/docker
|
skip/docker
|
||||||
needs/root
|
needs/root
|
||||||
needs/target/setup_epel
|
needs/target/setup_epel
|
||||||
|
|
Loading…
Reference in a new issue