unbound/.gitlab/testing.yaml

34 lines
640 B
YAML

---
variables:
DEBIAN_FRONTEND: "noninteractive"
DOCKER_HOST: "tcp://docker:2375"
DOCKER_TLS_CERTDIR: ""
services:
- "docker:dind"
molecule:
stage: "testing"
image: "docker:latest"
script:
- "apk add \
--no-cache \
python3 \
py3-pip \
git"
- "pip3 install \
--break-system-packages \
--no-cache-dir \
ansible-core \
ansible-lint \
molecule \
molecule-plugins[docker]"
- "molecule test"
parallel:
matrix:
- image: "debian"
tag: "12"
- image: "ubuntu"
tag: "22.04"
- image: "ubuntu"
tag: "24.04"