mirror of https://github.com/ansible/ansible.git
Add Ubuntu 20.04 to CI and ansible-test (#69161)
Change: - Add Ubuntu 20.04 to CI now that venv is default instead of virtualenv in ansible-test. Test Plan: - CI Tickets: - Fixes #69203 Signed-off-by: Rick Elrod <rick@elrod.me>pull/73330/head
parent
4357a78130
commit
1934ca9a55
@ -0,0 +1,2 @@
|
||||
minor_changes:
|
||||
- ansible-test - Added Ubuntu 20.04 LTS image to the default completion list
|
@ -0,0 +1 @@
|
||||
multiarch_test_pkg: libunistring2
|
@ -0,0 +1 @@
|
||||
multiarch_test_pkg: hello
|
@ -1,3 +1,5 @@
|
||||
---
|
||||
- include: ubuntu.yml
|
||||
when: ansible_distribution == 'Ubuntu'
|
||||
when:
|
||||
- ansible_distribution == 'Ubuntu'
|
||||
- ansible_distribution_release != 'focal'
|
||||
|
@ -0,0 +1,6 @@
|
||||
---
|
||||
subversion_packages:
|
||||
- subversion
|
||||
- libapache2-mod-svn
|
||||
apache_user: www-data
|
||||
apache_group: www-data
|
Loading…
Reference in New Issue