From 4aed6f3a3d1ee748d03da150aacecc499d6cda37 Mon Sep 17 00:00:00 2001 From: Fabricio Aguiar Date: Tue, 24 May 2022 12:18:50 +0100 Subject: [PATCH] Add Fedora 36 support --- .github/workflows/ci.yml | 3 ++- meta/main.yml | 1 + vars/Fedora-36.yml | 14 ++++++++++++++ 3 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 vars/Fedora-36.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 27157ce..608fe87 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,11 +39,12 @@ jobs: name: Molecule runs-on: ubuntu-latest strategy: + fail-fast: ${{ !contains(github.event_name, 'pull_request') }} matrix: distro: - rockylinux8 - centos7 - - fedora35 + - fedora36 - ubuntu2004 - ubuntu1804 - debian10 diff --git a/meta/main.yml b/meta/main.yml index c2682d3..51f2e59 100644 --- a/meta/main.yml +++ b/meta/main.yml @@ -21,6 +21,7 @@ galaxy_info: - 33 - 34 - 35 + - 36 - name: Ubuntu versions: - xenial diff --git a/vars/Fedora-36.yml b/vars/Fedora-36.yml new file mode 100644 index 0000000..86b0dea --- /dev/null +++ b/vars/Fedora-36.yml @@ -0,0 +1,14 @@ +--- +__postgresql_version: "14.1" +__postgresql_data_dir: "/var/lib/pgsql/data" +__postgresql_bin_path: "/usr/bin" +__postgresql_config_path: "/var/lib/pgsql/data" +__postgresql_daemon: postgresql +__postgresql_packages: + - postgresql + - postgresql-server + - postgresql-contrib + - postgresql-libs +__postgresql_unix_socket_directories_mode: '0755' +# Fedora 32 containers only have python3 by default +postgresql_python_library: python3-psycopg2