Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Merged
merged 3 commits into from Nov 5, 2021
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions .azure-pipelines/azure-pipelines.yml
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions changelogs/fragments/ansible-test-fedora35.yml
@@ -0,0 +1,2 @@
minor_changes:
- ansible-test - Added the ``fedora35`` test container.
2 changes: 2 additions & 0 deletions test/integration/targets/dnf/vars/Fedora-35.yml
@@ -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
1 change: 1 addition & 0 deletions test/lib/ansible_test/_data/completion/docker.txt
Expand Up @@ -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
Expand Down