test: add support debian 12
This commit is contained in:
parent
6819a4b3ac
commit
d02a152f4b
4 changed files with 14 additions and 12 deletions
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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 .
|
||||||
|
|
Loading…
Reference in a new issue