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
|
||||
shippable/posix/group4
|
||||
postgresql_db
|
||||
postgresql_lang
|
||||
postgresql_pg_hba
|
||||
postgresql_privs
|
||||
postgresql_schema
|
||||
postgresql_user
|
||||
skip/osx
|
||||
|
||||
@ -1,4 +1,3 @@
|
||||
destructive
|
||||
shippable/posix/group4
|
||||
postgresql_copy
|
||||
skip/osx
|
||||
|
||||
@ -1,4 +1,3 @@
|
||||
destructive
|
||||
shippable/posix/group4
|
||||
postgresql_ext
|
||||
skip/osx
|
||||
|
||||
@ -1,4 +1,3 @@
|
||||
destructive
|
||||
shippable/posix/group4
|
||||
postgresql_idx
|
||||
skip/osx
|
||||
|
||||
@ -1,4 +1,3 @@
|
||||
destructive
|
||||
shippable/posix/group4
|
||||
postgresql_info
|
||||
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
|
||||
shippable/posix/group4
|
||||
postgresql_membership
|
||||
skip/osx
|
||||
|
||||
@ -1,4 +1,3 @@
|
||||
destructive
|
||||
shippable/posix/group4
|
||||
postgresql_owner
|
||||
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
|
||||
shippable/posix/group4
|
||||
postgresql_ping
|
||||
skip/osx
|
||||
|
||||
@ -1,4 +1,3 @@
|
||||
destructive
|
||||
shippable/posix/group4
|
||||
postgresql_publication
|
||||
skip/osx
|
||||
|
||||
@ -1,4 +1,3 @@
|
||||
destructive
|
||||
shippable/posix/group4
|
||||
postgresql_query
|
||||
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
|
||||
shippable/posix/group4
|
||||
postgresql_sequence
|
||||
skip/osx
|
||||
|
||||
@ -1,4 +1,3 @@
|
||||
destructive
|
||||
shippable/posix/group4
|
||||
postgresql_set
|
||||
skip/osx
|
||||
|
||||
@ -1,4 +1,3 @@
|
||||
destructive
|
||||
shippable/posix/group4
|
||||
postgresql_slot
|
||||
skip/osx
|
||||
|
||||
@ -1,4 +1,3 @@
|
||||
destructive
|
||||
shippable/posix/group4
|
||||
postgresql_table
|
||||
skip/osx
|
||||
|
||||
@ -1,4 +1,3 @@
|
||||
destructive
|
||||
shippable/posix/group4
|
||||
postgresql_tablespace
|
||||
skip/osx
|
||||
|
||||
Loading…
Reference in New Issue