Add support for Postgres v12

This commit is contained in:
Slavi Pantaleev
2019-10-04 08:51:32 +03:00
parent 9df80b00b6
commit 9c438a3870
4 changed files with 17 additions and 2 deletions

View File

@ -44,3 +44,8 @@
set_fact:
matrix_postgres_detected_version_corresponding_docker_image: "{{ matrix_postgres_docker_image_v10 }}"
when: "matrix_postgres_detected_version == '10' or matrix_postgres_detected_version.startswith('10.')"
- name: Determine corresponding Docker image to detected version (use 11.x, if detected)
set_fact:
matrix_postgres_detected_version_corresponding_docker_image: "{{ matrix_postgres_docker_image_v11 }}"
when: "matrix_postgres_detected_version == '11' or matrix_postgres_detected_version.startswith('11.')"