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

[PC-1775] Support Ubuntu 20.04 #27

Merged
merged 1 commit into from
Jun 3, 2024
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions meta/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ galaxy_info:
- 14.04
- 16.04
- 18.04
- 20.04

galaxy_tags: []
# List tags for your role here, one per line. A tag is a keyword that describes
Expand Down
2 changes: 2 additions & 0 deletions molecule/default/molecule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ platforms:
box: ubuntu/xenial64
- name: ubuntu-18.04
box: ubuntu/bionic64
- name: ubuntu-20.04
box: ubuntu/focal64
provisioner:
name: ansible
lint:
Expand Down
2 changes: 1 addition & 1 deletion tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

- name: Test ansible_distribution_release
assert:
that: ansible_distribution_release in ['trusty', 'xenial', 'bionic']
that: ansible_distribution_release in ['trusty', 'xenial', 'bionic', 'focal']

- name: Update package index
apt:
Expand Down