4 Commits

Author SHA1 Message Date
Daniel Akulenok b0d2a914f8 test: Trigger CI pipeline to verify molecule-podman fix
Test / Lint (pull_request) Successful in 15s
Test / Test (pull_request) Failing after 2m11s
2026-02-08 00:30:39 +01:00
Daniel Akulenok a4f06d3daf fix: Install molecule-podman driver for CI/CD tests
Test / Lint (push) Successful in 16s
Test / Test (push) Has been skipped
The test stage was failing because molecule couldn't find the podman
driver. The issue was that 'molecule[podman]' extra doesn't exist in
molecule 25.12.0. Install 'molecule-podman' package instead which
provides the required podman driver for molecule.
2026-02-08 00:29:47 +01:00
Daniel Akulenok 282e7601b4 fix: Add pipefail option to shell command in verify.yml
Test / Lint (push) Successful in 15s
Test / Test (push) Has been skipped
Resolves ansible-lint risky-shell-pipe violation by adding
'set -o pipefail' to shell task that uses pipes.
2026-02-08 00:26:46 +01:00
daniel f15d33b619 Merge pull request 'feat: Add BIND9 9.20 support with molecule scenario and documentation' (#14) from feature/bind9-20-support into main
Test / Lint (push) Failing after 15s
Test / Test (push) Has been skipped
Reviewed-on: #14
2026-02-07 23:21:35 +00:00
3 changed files with 4 additions and 2 deletions
+2 -2
View File
@@ -54,8 +54,8 @@ jobs:
run: | run: |
pip install --no-cache-dir \ pip install --no-cache-dir \
ansible \ ansible \
molecule[podman] \ molecule \
podman-compose \ molecule-podman \
pyyaml \ pyyaml \
jinja2 jinja2
+1
View File
@@ -0,0 +1 @@
Testing CI fix
+1
View File
@@ -105,6 +105,7 @@
- name: Verify no critical errors in logs - name: Verify no critical errors in logs
ansible.builtin.shell: | ansible.builtin.shell: |
set -o pipefail
if grep -i "error" /var/log/named/default.log | grep -v "error reporting" > /dev/null; then if grep -i "error" /var/log/named/default.log | grep -v "error reporting" > /dev/null; then
exit 1 exit 1
fi fi