ansible-test - Add Fedora 35 test container. (#76228)

* ansible-test - Add Fedora 35 test container.
* Added Fedora 35 to CI and removed Fedora 33 from CI.
* Fix dnf integration test.
* Fix connection_paramiko_ssh test.
pull/76233/head
Matt Clay 3 years ago committed by GitHub
parent 57989c2bcb
commit f42ffe16d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -119,10 +119,10 @@ stages:
test: alpine3
- name: CentOS 7
test: centos7
- name: Fedora 33
test: fedora33
- name: Fedora 34
test: fedora34
- name: Fedora 35
test: fedora35
- name: openSUSE 15 py2
test: opensuse15py2
- name: openSUSE 15 py3
@ -191,10 +191,10 @@ stages:
targets:
- name: CentOS 7
test: centos7
- name: Fedora 33
test: fedora33
- name: Fedora 34
test: fedora34
- name: Fedora 35
test: fedora35
- name: openSUSE 15 py2
test: opensuse15py2
- name: openSUSE 15 py3

@ -0,0 +1,2 @@
minor_changes:
- ansible-test - Added the ``fedora35`` test container.

@ -0,0 +1,2 @@
astream_name: '@varnish:6.0/default'
astream_name_no_stream: '@varnish/default'

@ -0,0 +1,9 @@
- name: Install Paramiko and crypto policies scripts
dnf:
name:
- crypto-policies-scripts
- python3-paramiko
install_weak_deps: no
- name: Drop the crypto-policy to LEGACY for these tests
command: update-crypto-policies --set LEGACY

@ -0,0 +1,7 @@
- name: Revert the crypto-policy back to DEFAULT
command: update-crypto-policies --set DEFAULT
- name: Uninstall Paramiko and crypto policies scripts using dnf history undo
command: dnf history undo last --assumeyes
args:
warn: no

@ -6,6 +6,7 @@ centos7 image=quay.io/ansible/centos7-test-container:3.1.0 python=2.7 seccomp=un
centos8 image=quay.io/ansible/centos8-test-container:3.1.0 python=3.6 seccomp=unconfined
fedora33 image=quay.io/ansible/fedora33-test-container:3.1.0 python=3.9
fedora34 image=quay.io/ansible/fedora34-test-container:3.1.0 python=3.9 seccomp=unconfined
fedora35 image=quay.io/ansible/fedora35-test-container:3.2.0 python=3.10 seccomp=unconfined
opensuse15py2 image=quay.io/ansible/opensuse15py2-test-container:3.1.0 python=2.7
opensuse15 image=quay.io/ansible/opensuse15-test-container:3.1.0 python=3.6
ubuntu1804 image=quay.io/ansible/ubuntu1804-test-container:3.1.0 python=3.6 seccomp=unconfined

Loading…
Cancel
Save