We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1e06d4 commit 304aa68Copy full SHA for 304aa68
ansible/tasks/test-image.yml
@@ -76,6 +76,25 @@
76
when: is_psql_oriole_16
77
become: yes
78
79
+ - name: Remove specified extension files from extensions directory
80
+ ansible.builtin.find:
81
+ paths: /tmp/migrations/tests/extensions
82
+ patterns:
83
+ - '*timescaledb*.sql'
84
+ - '*postgis*.sql'
85
+ - '*pgrouting*.sql'
86
+ - '*plv8*.sql'
87
+ - '*pgvector*.sql'
88
+ register: files_to_remove
89
+ when: is_psql_oriole_16
90
+
91
+ - name: Delete matched extension files
92
+ ansible.builtin.file:
93
+ path: "{{ item.path }}"
94
+ state: absent
95
+ loop: "{{ files_to_remove.files }}"
96
97
+ become: yes
98
99
100
- name: Run migrations tests
0 commit comments