mirror of https://github.com/ansible/ansible.git
postgresql: move CI tests to separate targets (#62773)
parent
278398555d
commit
6be46b59fa
@ -1,9 +1,6 @@
|
|||||||
destructive
|
destructive
|
||||||
shippable/posix/group4
|
shippable/posix/group4
|
||||||
postgresql_db
|
postgresql_db
|
||||||
postgresql_lang
|
|
||||||
postgresql_pg_hba
|
|
||||||
postgresql_privs
|
postgresql_privs
|
||||||
postgresql_schema
|
|
||||||
postgresql_user
|
postgresql_user
|
||||||
skip/osx
|
skip/osx
|
||||||
|
|||||||
@ -1,4 +1,3 @@
|
|||||||
destructive
|
destructive
|
||||||
shippable/posix/group4
|
shippable/posix/group4
|
||||||
postgresql_copy
|
|
||||||
skip/osx
|
skip/osx
|
||||||
|
|||||||
@ -1,4 +1,3 @@
|
|||||||
destructive
|
destructive
|
||||||
shippable/posix/group4
|
shippable/posix/group4
|
||||||
postgresql_ext
|
|
||||||
skip/osx
|
skip/osx
|
||||||
|
|||||||
@ -1,4 +1,3 @@
|
|||||||
destructive
|
destructive
|
||||||
shippable/posix/group4
|
shippable/posix/group4
|
||||||
postgresql_idx
|
|
||||||
skip/osx
|
skip/osx
|
||||||
|
|||||||
@ -1,4 +1,3 @@
|
|||||||
destructive
|
destructive
|
||||||
shippable/posix/group4
|
shippable/posix/group4
|
||||||
postgresql_info
|
|
||||||
skip/osx
|
skip/osx
|
||||||
|
|||||||
@ -0,0 +1,3 @@
|
|||||||
|
destructive
|
||||||
|
shippable/posix/group4
|
||||||
|
skip/osx
|
||||||
@ -0,0 +1,3 @@
|
|||||||
|
---
|
||||||
|
dependencies:
|
||||||
|
- setup_postgresql_db
|
||||||
@ -0,0 +1,3 @@
|
|||||||
|
# Initial CI tests of postgresql_lang module
|
||||||
|
- import_tasks: postgresql_lang_initial.yml
|
||||||
|
when: ansible_distribution == 'CentOS'
|
||||||
@ -1,4 +1,3 @@
|
|||||||
destructive
|
destructive
|
||||||
shippable/posix/group4
|
shippable/posix/group4
|
||||||
postgresql_membership
|
|
||||||
skip/osx
|
skip/osx
|
||||||
|
|||||||
@ -1,4 +1,3 @@
|
|||||||
destructive
|
destructive
|
||||||
shippable/posix/group4
|
shippable/posix/group4
|
||||||
postgresql_owner
|
|
||||||
skip/osx
|
skip/osx
|
||||||
|
|||||||
@ -0,0 +1,3 @@
|
|||||||
|
destructive
|
||||||
|
shippable/posix/group4
|
||||||
|
skip/osx
|
||||||
@ -0,0 +1,23 @@
|
|||||||
|
---
|
||||||
|
pg_hba_test_ips:
|
||||||
|
- contype: local
|
||||||
|
users: 'all,postgres,test'
|
||||||
|
- source: '0000:ffff::'
|
||||||
|
netmask: 'ffff:fff0::'
|
||||||
|
- source: '192.168.0.0/24'
|
||||||
|
netmask: ''
|
||||||
|
databases: 'all,replication'
|
||||||
|
- source: '192.168.1.0/24'
|
||||||
|
netmask: ''
|
||||||
|
databases: 'all'
|
||||||
|
method: reject
|
||||||
|
- source: '127.0.0.1/32'
|
||||||
|
netmask: ''
|
||||||
|
- source: '::1/128'
|
||||||
|
netmask: ''
|
||||||
|
- source: '0000:ff00::'
|
||||||
|
netmask: 'ffff:ffff:ffff:ffff:ffff:ffff:ffff:ff00'
|
||||||
|
method: scram-sha-256
|
||||||
|
- source: '172.16.0.0'
|
||||||
|
netmask: '255.255.0.0'
|
||||||
|
method: trust
|
||||||
@ -0,0 +1,3 @@
|
|||||||
|
---
|
||||||
|
dependencies:
|
||||||
|
- setup_postgresql_db
|
||||||
@ -0,0 +1,2 @@
|
|||||||
|
# Initial CI tests of postgresql_pg_hba module
|
||||||
|
- import_tasks: postgresql_pg_hba_initial.yml
|
||||||
@ -1,4 +1,3 @@
|
|||||||
destructive
|
destructive
|
||||||
shippable/posix/group4
|
shippable/posix/group4
|
||||||
postgresql_ping
|
|
||||||
skip/osx
|
skip/osx
|
||||||
|
|||||||
@ -1,4 +1,3 @@
|
|||||||
destructive
|
destructive
|
||||||
shippable/posix/group4
|
shippable/posix/group4
|
||||||
postgresql_publication
|
|
||||||
skip/osx
|
skip/osx
|
||||||
|
|||||||
@ -1,4 +1,3 @@
|
|||||||
destructive
|
destructive
|
||||||
shippable/posix/group4
|
shippable/posix/group4
|
||||||
postgresql_query
|
|
||||||
skip/osx
|
skip/osx
|
||||||
|
|||||||
@ -0,0 +1,3 @@
|
|||||||
|
destructive
|
||||||
|
shippable/posix/group4
|
||||||
|
skip/osx
|
||||||
@ -0,0 +1,4 @@
|
|||||||
|
---
|
||||||
|
db_name: 'ansible_db'
|
||||||
|
db_user1: 'ansible_db_user1'
|
||||||
|
db_user2: 'ansible_db_user2'
|
||||||
@ -0,0 +1,3 @@
|
|||||||
|
---
|
||||||
|
dependencies:
|
||||||
|
- setup_postgresql_db
|
||||||
@ -0,0 +1,2 @@
|
|||||||
|
# Initial CI tests of postgresql_schema module
|
||||||
|
- import_tasks: postgresql_schema_initial.yml
|
||||||
@ -1,4 +1,3 @@
|
|||||||
destructive
|
destructive
|
||||||
shippable/posix/group4
|
shippable/posix/group4
|
||||||
postgresql_sequence
|
|
||||||
skip/osx
|
skip/osx
|
||||||
|
|||||||
@ -1,4 +1,3 @@
|
|||||||
destructive
|
destructive
|
||||||
shippable/posix/group4
|
shippable/posix/group4
|
||||||
postgresql_set
|
|
||||||
skip/osx
|
skip/osx
|
||||||
|
|||||||
@ -1,4 +1,3 @@
|
|||||||
destructive
|
destructive
|
||||||
shippable/posix/group4
|
shippable/posix/group4
|
||||||
postgresql_slot
|
|
||||||
skip/osx
|
skip/osx
|
||||||
|
|||||||
@ -1,4 +1,3 @@
|
|||||||
destructive
|
destructive
|
||||||
shippable/posix/group4
|
shippable/posix/group4
|
||||||
postgresql_table
|
|
||||||
skip/osx
|
skip/osx
|
||||||
|
|||||||
@ -1,4 +1,3 @@
|
|||||||
destructive
|
destructive
|
||||||
shippable/posix/group4
|
shippable/posix/group4
|
||||||
postgresql_tablespace
|
|
||||||
skip/osx
|
skip/osx
|
||||||
|
|||||||
Loading…
Reference in New Issue