test: add support debian 12

This commit is contained in:
Adrien Waksberg 2023-07-06 17:06:38 +02:00
parent 6819a4b3ac
commit d02a152f4b
4 changed files with 14 additions and 12 deletions

View file

@ -8,6 +8,11 @@ Which is based on [Keep A Changelog](http://keepachangelog.com/)
### Added ### Added
- feat: add gitlab_registry_url variable - feat: add gitlab_registry_url variable
- test: add support debian 12
### Removed
- test: remove support debian 10
## v1.1.0 - 2021-08-24 ## v1.1.0 - 2021-08-24

View file

@ -9,8 +9,8 @@ Install and configure a Gitlab server
* Ansible >= 2.9 * Ansible >= 2.9
* Debian * Debian
* Buster
* Bullseye * Bullseye
* Bookworm
## Role variables ## Role variables

View file

@ -6,13 +6,13 @@ galaxy_info:
company: Adrien Waksberg company: Adrien Waksberg
description: Install and configure gitlab server description: Install and configure gitlab server
license: Apache2 license: Apache2
min_ansible_version: 2.9 min_ansible_version: "2.9"
platforms: platforms:
- name: Debian - name: Debian
versions: versions:
- buster
- bullseye - bullseye
- bookworm
galaxy_tags: galaxy_tags:
- git - git

View file

@ -2,11 +2,12 @@
driver: driver:
name: docker name: docker
platforms: platforms:
- name: debian10 - name: debian12
image: nishiki/debian10:molecule image: nishiki/debian12:molecule
privileged: true privileged: true
volumes: volumes:
- /sys/fs/cgroup:/sys/fs/cgroup:ro - /sys/fs/cgroup:/sys/fs/cgroup:rw
cgroupns_mode: host
command: /bin/systemd command: /bin/systemd
capabilities: capabilities:
- SYS_ADMIN - SYS_ADMIN
@ -14,15 +15,11 @@ platforms:
image: nishiki/debian11:molecule image: nishiki/debian11:molecule
privileged: true privileged: true
volumes: volumes:
- /sys/fs/cgroup:/sys/fs/cgroup:ro - /sys/fs/cgroup:/sys/fs/cgroup:rw
cgroupns_mode: host
command: /bin/systemd command: /bin/systemd
capabilities: capabilities:
- SYS_ADMIN - SYS_ADMIN
provisioner:
inventory:
host_vars:
debian11:
gitlab_repository: deb https://packages.gitlab.com/gitlab/gitlab-ce/debian/ buster main
lint: | lint: |
set -e set -e
yamllint . yamllint .