test: add support debian 12
This commit is contained in:
parent
2019eca6df
commit
93c6c0a8e3
4 changed files with 27 additions and 10 deletions
|
@ -5,6 +5,14 @@ Which is based on [Keep A Changelog](http://keepachangelog.com/)
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
### Added
|
||||
|
||||
- test: add support debian 12
|
||||
|
||||
### Removed
|
||||
|
||||
- test: remove support debian 10
|
||||
|
||||
## [v1.0.0] - 2020-08-09
|
||||
|
||||
- first version
|
||||
|
|
|
@ -8,7 +8,9 @@ Install and configure a Gitlab runner
|
|||
## Requirements
|
||||
|
||||
* Ansible >= 2.9
|
||||
* Debian Buster
|
||||
* Debian
|
||||
* Bullseye
|
||||
* Bookworm
|
||||
|
||||
## Role variables
|
||||
|
||||
|
|
|
@ -6,12 +6,13 @@ galaxy_info:
|
|||
company: Adrien Waksberg
|
||||
description: Install and configure Gitlab runner
|
||||
license: Apache2
|
||||
min_ansible_version: 2.9
|
||||
min_ansible_version: "2.9"
|
||||
|
||||
platforms:
|
||||
- name: Debian
|
||||
versions:
|
||||
- buster
|
||||
- bullseye
|
||||
- bookworm
|
||||
|
||||
galaxy_tags:
|
||||
- git
|
||||
|
|
|
@ -2,18 +2,24 @@
|
|||
driver:
|
||||
name: docker
|
||||
platforms:
|
||||
- name: debian10
|
||||
image: nishiki/debian10:molecule
|
||||
- name: debian12
|
||||
image: nishiki/debian12:molecule
|
||||
privileged: true
|
||||
volumes:
|
||||
- /sys/fs/cgroup:/sys/fs/cgroup:ro
|
||||
- /sys/fs/cgroup:/sys/fs/cgroup:rw
|
||||
cgroupns_mode: host
|
||||
command: /bin/systemd
|
||||
capabilities:
|
||||
- SYS_ADMIN
|
||||
- name: debian11
|
||||
image: nishiki/debian11:molecule
|
||||
privileged: true
|
||||
volumes:
|
||||
- /sys/fs/cgroup:/sys/fs/cgroup:rw
|
||||
cgroupns_mode: host
|
||||
command: /bin/systemd
|
||||
capabilities:
|
||||
- SYS_ADMIN
|
||||
exposed_ports:
|
||||
- 22/tcp
|
||||
published_ports:
|
||||
- 0.0.0.0:2222:22/tcp
|
||||
lint: |
|
||||
set -e
|
||||
yamllint .
|
||||
|
|
Loading…
Reference in a new issue