Skip to content

Commit c70954a

Browse files
authored
Merge pull request #568 from ANXS/add-pg16-testing
Add pg16 testing & Support testing for rockylinux9, debian12 and ubuntu20.04
2 parents 64b3da6 + 394a7ca commit c70954a

File tree

5 files changed

+24
-9
lines changed

5 files changed

+24
-9
lines changed

.github/workflows/ci.yml

+3
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,10 @@ jobs:
4545
matrix:
4646
include:
4747
- distro: rockylinux8
48+
- distro: rockylinux9
4849
- distro: debian11
50+
- distro: debian12
51+
- distro: ubuntu2004
4952
- distro: ubuntu2204
5053

5154
steps:

.github/workflows/stale.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- uses: actions/stale@v9
2020
with:
2121
repo-token: ${{ secrets.GITHUB_TOKEN }}
22-
days-before-stale: 120
22+
days-before-stale: 90
2323
days-before-close: 60
2424
exempt-issue-labels: bug
2525
exempt-pr-labels: bug

README.md

+7-8
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,13 @@ An example how to include this role as a task:
5656

5757
| Distribution / PostgreSQL | 11 | 12 | 13 | 14 | 15 | 16 |
5858
| ------------------------- | :--------: | :----------------: | :----------------: | :----------------: | :----------------: | :-------------: |
59-
| CentOS 8.x | :no_entry: | :white_check_mark: | :white_check_mark: | :grey_question: | :grey_question: | :grey_question: |
60-
| Debian 11.x | :no_entry: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :grey_question: |
61-
| Debian 12.x | :no_entry: | :interrobang: | :interrobang: | :interrobang: | :interrobang: | :interrobang: |
62-
| Ubuntu 20.04.x | :no_entry: | :white_check_mark: | :white_check_mark: | :grey_question: | :grey_question: | :grey_question: |
63-
| Ubuntu 22.04.x | :no_entry: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :grey_question: |
64-
| Rockylinux 9.x | :no_entry: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :grey_question: |
65-
| Fedora 39 | :no_entry: | :interrobang: | :interrobang: | :interrobang: | :interrobang: | :interrobang: |
59+
| Debian 11.x | :no_entry: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
60+
| Debian 12.x | :no_entry: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
61+
| Rockylinux 8.x | :no_entry: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
62+
| Rockylinux 9.x | :no_entry: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
63+
| Ubuntu 20.04.x | :no_entry: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
64+
| Ubuntu 22.04.x | :no_entry: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
65+
6666

6767
- :white_check_mark: - tested, works fine
6868
- :warning: - not for production use
@@ -182,7 +182,6 @@ Top Contributors:
182182
- [Sébastien Alix](https://github.com/sebalix)
183183
- [Copperfield](https://github.com/Copperfield)
184184
- [T. Soulabail](https://github.com/tsoulabail)
185-
186185
- [Ralph von der Heyden](https://github.com/ralph)
187186

188187

molecule/default/molecule.yml

+10
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,14 @@ platforms:
4040
pre_build_image: true
4141
cgroupns_mode: host
4242
command: ${MOLECULE_DOCKER_COMMAND:-""}
43+
- name: postgresql-16
44+
image: "geerlingguy/docker-${MOLECULE_DISTRO:-debian11}-ansible:latest"
45+
volumes:
46+
- /sys/fs/cgroup:/sys/fs/cgroup:rw
47+
privileged: true
48+
pre_build_image: true
49+
cgroupns_mode: host
50+
command: ${MOLECULE_DOCKER_COMMAND:-""}
4351
provisioner:
4452
name: ansible
4553
config_options:
@@ -58,5 +66,7 @@ provisioner:
5866
postgresql_version: 14
5967
postgresql-15:
6068
postgresql_version: 15
69+
postgresql-16:
70+
postgresql_version: 16
6171
verifier:
6272
name: ansible

tests/vars.CentOS.9.yml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
---
2+
#--- picking the correct python interpreter
3+
ansible_python_interpreter: "/usr/bin/python3"

0 commit comments

Comments
 (0)