Skip to content

Commit e40712c

Browse files
authored
Merge pull request #12 from ANXS/otakup0pe/deb12
deb12 as a treat
2 parents c214cf4 + 388ed0a commit e40712c

3 files changed

Lines changed: 21 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,9 @@ jobs:
4848
- os: ubuntu
4949
version: 2404
5050
image: geerlingguy/docker-ubuntu2404-ansible:latest
51+
- os: debian
52+
version: 12
53+
image: geerlingguy/docker-debian12-ansible:latest
5154
- os: debian
5255
version: 13
5356
image: geerlingguy/docker-debian13-ansible:latest

Makefile

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.PHONY: lint test test-ubuntu2204 test-ubuntu2404 test-ubuntu2404-uv test-debian13 test-debian13-uv test-all act act-download clean distclean
1+
.PHONY: lint test test-ubuntu2204 test-ubuntu2404 test-ubuntu2404-uv test-debian12 test-debian12-uv test-debian13 test-debian13-uv test-all act act-download clean distclean
22

33
VENV := .venv
44
BIN := $(VENV)/bin
@@ -31,6 +31,16 @@ test-ubuntu2404-uv: $(VENV)
3131
PYTHON_UV_INSTALL=true PYTHON_UV_SUFFIX="-uv" \
3232
$(BIN)/molecule test
3333

34+
test-debian12: $(VENV)
35+
MOLECULE_OS=debian MOLECULE_VERSION=12 \
36+
PYTHON_UV_INSTALL=false \
37+
$(BIN)/molecule test
38+
39+
test-debian12-uv: $(VENV)
40+
MOLECULE_OS=debian MOLECULE_VERSION=12 \
41+
PYTHON_UV_INSTALL=true PYTHON_UV_SUFFIX="-uv" \
42+
$(BIN)/molecule test
43+
3444
test-debian13: $(VENV)
3545
MOLECULE_OS=debian MOLECULE_VERSION=13 \
3646
PYTHON_UV_INSTALL=false \
@@ -41,7 +51,7 @@ test-debian13-uv: $(VENV)
4151
PYTHON_UV_INSTALL=true PYTHON_UV_SUFFIX="-uv" \
4252
$(BIN)/molecule test
4353

44-
test-all: test-ubuntu2204 test-ubuntu2404 test-ubuntu2404-uv test-debian13 test-debian13-uv
54+
test-all: test-ubuntu2204 test-ubuntu2404 test-ubuntu2404-uv test-debian12 test-debian12-uv test-debian13 test-debian13-uv
4555

4656
ACT_VERSION ?= 0.2.82
4757
ACT_BINARY := $(CURDIR)/.act/act

vars/debian-12.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
python_packages_add:
3+
- "python3"
4+
- "python3-dev"
5+
- "python3-venv"
6+
- "python3-virtualenv"

0 commit comments

Comments
 (0)