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

Add new platforms to testing and meta #6

Merged
merged 1 commit into from
Apr 29, 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
12 changes: 8 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,16 +44,20 @@ jobs:
fail-fast: false
matrix:
platform:
- name: ubuntu2404
image: docker.io/geerlingguy/docker-ubuntu2404-ansible:latest
- name: ubuntu2204
image: docker.io/geerlingguy/docker-ubuntu2204-ansible:latest
- name: debian12
image: docker.io/geerlingguy/docker-debian12-ansible
image: docker.io/geerlingguy/docker-debian12-ansible:latest
- name: fedora40
image: docker.io/geerlingguy/docker-fedora40-ansible:latest
- name: fedora39
image: docker.io/geerlingguy/docker-fedora39-ansible
image: docker.io/geerlingguy/docker-fedora39-ansible:latest
- name: fedora38
image: docker.io/geerlingguy/docker-fedora38-ansible
image: docker.io/geerlingguy/docker-fedora38-ansible:latest
- name: centosstream9
image: ghcr.io/bcook254/docker-centosstream9-ansible
image: ghcr.io/bcook254/docker-centosstream9-ansible:latest
steps:
- name: Check out the codebase.
uses: actions/checkout@v4
Expand Down
2 changes: 2 additions & 0 deletions meta/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,14 @@ galaxy_info:
versions:
- 38
- 39
- 40
- name: Debian
versions:
- bookworm
- name: Ubuntu
versions:
- jammy
- noble
galaxy_tags:
- vaultwarden
- bitwardenrs
Expand Down
4 changes: 2 additions & 2 deletions molecule/default/molecule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ dependency:
driver:
name: podman
platforms:
- name: ${MOLECULE_DISTRO:-ubuntu2204}
image: docker.io/geerlingguy/docker-${MOLECULE_DISTRO:-ubuntu2204}-ansible:latest
- name: ${MOLECULE_DISTRO:-ubuntu2404}
image: docker.io/geerlingguy/docker-${MOLECULE_DISTRO:-ubuntu2404}-ansible:latest
command: ${MOLECULE_DOCKER_COMMAND:-""}
volumes:
- /sys/fs/cgroup:/sys/fs/cgroup:ro
Expand Down
Loading