1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Add Fedora 34 to CI (#2384)

* Add fedora 34 and fix typo

* Remove Fedora 32 from devel testing

* Use one newer version of Fedora for fixed ansible versions

* Revert "Use one newer version of Fedora for fixed ansible versions"

This reverts commit cbd006bd38.

* Try to skip task.

* Revert "Try to skip task."

This reverts commit ff0c899a86.

* Temporary disable Fedora 34 on setup_postgresql_db

Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
Amin Vakil 2021-05-01 02:19:33 +04:30 committed by GitHub
parent 5fbe946c3a
commit ae21af8820
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 3 deletions

View file

@ -268,10 +268,10 @@ stages:
test: centos7 test: centos7
- name: CentOS 8 - name: CentOS 8
test: centos8 test: centos8
- name: Fedora 32
test: fedora32
- name: Fedora 33 - name: Fedora 33
test: fedora33 test: fedora33
- name: Fedora 34
test: fedora34
- name: openSUSE 15 py2 - name: openSUSE 15 py2
test: opensuse15py2 test: opensuse15py2
- name: openSUSE 15 py3 - name: openSUSE 15 py3
@ -294,7 +294,7 @@ stages:
targets: targets:
- name: CentOS 8 - name: CentOS 8
test: centos8 test: centos8
- name: Fedora 32 - name: Fedora 33
test: fedora33 test: fedora33
- name: openSUSE 15 py3 - name: openSUSE 15 py3
test: opensuse15 test: opensuse15

View file

@ -11,6 +11,10 @@
- meta: end_play - meta: end_play
when: ansible_facts.distribution == 'CentOS' and ansible_facts.distribution_major_version == '8' when: ansible_facts.distribution == 'CentOS' and ansible_facts.distribution_major_version == '8'
# Temporary disable Fedora 34
- meta: end_play
when: ansible_facts.distribution == 'Fedora' and ansible_facts.distribution_major_version == '34'
- name: python 2 - name: python 2
set_fact: set_fact:
python_suffix: '' python_suffix: ''