Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .azure-pipelines/azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,8 @@ stages:
parameters:
testFormat: devel/linux/{0}/1
targets:
- name: Fedora 41
test: fedora41
- name: Fedora 42
test: fedora42
- name: Ubuntu 24.04
test: ubuntu2404
- name: Ubuntu 22.04
Expand Down Expand Up @@ -193,8 +193,8 @@ stages:
targets:
- name: RHEL 10.0
test: rhel/10.0
- name: RHEL 9.5
test: rhel/9.5
- name: RHEL 9.6
test: rhel/9.6

- stage: Remote_2_19
displayName: Remote 2.19
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
assert:
that:
- result is changed
- result.executed_commands[0] is search("/bin/pg_dump")
- result.executed_commands[0] is search("pg_dump")
- result.executed_commands[0] is search("-n schema1")

- name: pg_restore archive on dst_db with session_role
Expand All @@ -106,7 +106,7 @@
assert:
that:
- result is changed
- result.executed_commands[0] is search("/bin/pg_restore")
- result.executed_commands[0] is search("pg_restore")
- result.executed_commands[0] is search("--role=")

- name: check restored schema1 owner is db_session_role1
Expand Down Expand Up @@ -166,7 +166,7 @@
assert:
that:
- result is changed
- result.executed_commands[0] is search("/bin/pg_dump")
- result.executed_commands[0] is search("pg_dump")
- result.executed_commands[0] is search("-n schema1")
- result.executed_commands[0] is search("--role=")

Expand Down