Skip to content

Commit

Permalink
Merge pull request #55 from kirill-zak/53-alpine-linux-3180
Browse files Browse the repository at this point in the history
Add support for Alpine Linux 3.18.0
  • Loading branch information
kirill-zak authored May 12, 2023
2 parents f0db2df + a5cbac8 commit c69550f
Show file tree
Hide file tree
Showing 3 changed files with 74 additions and 4 deletions.
38 changes: 36 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:


test-alpine-3-16:
name: Molecule test - Alpine Linux
name: Molecule test - Alpine Linux 3.16.x
runs-on: ubuntu-latest

strategy:
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:


test-alpine-3-17:
name: Molecule test - Alpine Linux
name: Molecule test - Alpine Linux 3.17.x
runs-on: ubuntu-latest

strategy:
Expand Down Expand Up @@ -132,6 +132,40 @@ jobs:
MOLECULE_DISTR: kirillzak/docker-alpine-ansible
MOLECULE_TAG: ${{ matrix.tag }}


test-alpine-3-18:
name: Molecule test - Alpine Linux 3.18.x
runs-on: ubuntu-latest

strategy:
fail-fast: false

matrix:
tag: ['3.18.0']

steps:
- name: Checkout the codebase
uses: actions/checkout@v3

- name: Set up Python 3
uses: actions/setup-python@v4
with:
python-version: '3.x'

- name: Install test dependencies
run: pip3 install ansible molecule 'molecule-plugins[podman]' podman yamllint ansible-lint

- name: Install ansible dependencies
run: ansible-galaxy collection install community.general

- name: Run Molecule tests
run: molecule test
env:
PY_COLORS: '1'
ANSIBLE_FORCE_COLOR: '1'
MOLECULE_DISTR: kirillzak/docker-alpine-ansible
MOLECULE_TAG: ${{ matrix.tag }}

test-centos:
name: Molecule test - CentOS 8
runs-on: ubuntu-latest
Expand Down
39 changes: 37 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:


test-alpine-3-16:
name: Molecule test - Alpine Linux
name: Molecule test - Alpine Linux 3.16.x
runs-on: ubuntu-latest

strategy:
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:


test-alpine-3-17:
name: Molecule test - Alpine Linux
name: Molecule test - Alpine Linux 3.17.x
runs-on: ubuntu-latest

strategy:
Expand Down Expand Up @@ -131,6 +131,40 @@ jobs:
MOLECULE_DISTR: kirillzak/docker-alpine-ansible
MOLECULE_TAG: ${{ matrix.tag }}


test-alpine-3-18:
name: Molecule test - Alpine Linux 3.18.x
runs-on: ubuntu-latest

strategy:
fail-fast: false

matrix:
tag: ['3.18.0']

steps:
- name: Checkout the codebase
uses: actions/checkout@v3

- name: Set up Python 3
uses: actions/setup-python@v4
with:
python-version: '3.x'

- name: Install test dependencies
run: pip3 install ansible molecule 'molecule-plugins[podman]' podman yamllint ansible-lint

- name: Install ansible dependencies
run: ansible-galaxy collection install community.general

- name: Run Molecule tests
run: molecule test
env:
PY_COLORS: '1'
ANSIBLE_FORCE_COLOR: '1'
MOLECULE_DISTR: kirillzak/docker-alpine-ansible
MOLECULE_TAG: ${{ matrix.tag }}

test-centos:
name: Molecule test - CentOS 8
runs-on: ubuntu-latest
Expand Down Expand Up @@ -286,6 +320,7 @@ jobs:
- test-almalinux
- test-alpine-3-16
- test-alpine-3-17
- test-alpine-3-18
- test-centos
- test-debian
- test-fedora
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ An Ansible role that installs the latest version of Docker CE on the official in
* AlmaLinux `9.0`, `9.1`
* Alpine Linux 3.16.x (`3.16.0`, `3.16.1`, `3.16.2`, `3.16.3`, `3.16.4`, `3.16.5`)
* Alpine Linux 3.17.x (`3.17.0`, `3.17.1`, `3.17.2`, `3.17.3`)
* Alpine Linux 3.18.x (`3.18.0`)
* CentOS `8`
* Debian `10` (`Buster`)
* Debian `11` (`Bullseye`)
Expand Down

0 comments on commit c69550f

Please sign in to comment.