Skip to content

Commit

Permalink
AZP: remove testing against stable-2.13 as EOL (#643)
Browse files Browse the repository at this point in the history
  • Loading branch information
Andersson007 authored Dec 1, 2023
1 parent 26c86ba commit 8949874
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 45 deletions.
41 changes: 0 additions & 41 deletions .azure-pipelines/azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,18 +111,6 @@ stages:
- name: Units
test: '2.14/units/1'

- stage: Ansible_2_13
displayName: Sanity & Units 2.13
dependsOn: []
jobs:
- template: templates/matrix.yml
parameters:
targets:
- name: Sanity
test: '2.13/sanity/1'
- name: Units
test: '2.13/units/1'

## Docker
- stage: Docker_devel
displayName: Docker devel
Expand Down Expand Up @@ -186,21 +174,6 @@ stages:
- name: Ubuntu 20.04
test: ubuntu2004

- stage: Docker_2_13
displayName: Docker 2.13
dependsOn: []
jobs:
- template: templates/matrix.yml
parameters:
testFormat: 2.13/linux/{0}/1
targets:
- name: CentOS 7
test: centos7
- name: Fedora 35
test: fedora35
- name: Ubuntu 20.04
test: ubuntu2004

## Remote
- stage: Remote_devel
displayName: Remote devel
Expand Down Expand Up @@ -246,17 +219,6 @@ stages:
- name: RHEL 8.6
test: rhel/8.6

- stage: Remote_2_13
displayName: Remote 2.13
dependsOn: []
jobs:
- template: templates/matrix.yml
parameters:
testFormat: 2.13/{0}/1
targets:
- name: RHEL 8.5
test: rhel/8.5

## Finally

- stage: Summary
Expand All @@ -266,16 +228,13 @@ stages:
- Ansible_2_16
- Ansible_2_15
- Ansible_2_14
- Ansible_2_13
- Docker_devel
- Docker_2_16
- Docker_2_15
- Docker_2_14
- Docker_2_13
- Remote_devel
- Remote_2_16
- Remote_2_15
- Remote_2_14
- Remote_2_13
jobs:
- template: templates/coverage.yml
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@ Here is the table for the support timeline:
## Tested with ansible-core

Tested with the following `ansible-core` releases:
- 2.13
- 2.14
- 2.15
- 2.16
Expand All @@ -114,7 +113,6 @@ Our AZP CI includes testing with the following docker images / PostgreSQL versio
|--------------|-----------------|--------------------|
| CentOS 7 | 2.5.1 | 9.2 |
| RHEL 8 | 2.7.5 | 10 |
| Fedora 35 | 2.9.1 | 13 |
| Fedora 37 | 2.9.6 | 14 |
| Fedora 38 | 2.9.6 | 15 |
| Fedora 39 | 2.9.6 | 15 |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2740,10 +2740,13 @@
check_mode: true
register: result

- set_fact:
query: 'ALTER LARGE OBJECT {{ test_large_object }} OWNER TO "bob"'

- assert:
that:
- result is changed
- result.queries == ['ALTER LARGE OBJECT {{ test_large_object }} OWNER TO "bob"']
- result.queries == [query]

- name: postgresql_owner - check that nothing changed after the previous step
become_user: '{{ pg_user }}'
Expand Down Expand Up @@ -2775,7 +2778,7 @@
- assert:
that:
- result is changed
- result.queries == ['ALTER LARGE OBJECT {{ test_large_object }} OWNER TO "bob"']
- result.queries == [query]

- name: postgresql_owner - check that large_object owner has been changed after the previous step
become_user: '{{ pg_user }}'
Expand Down

0 comments on commit 8949874

Please sign in to comment.