feat: add puppet-pr-validator (#42)
Deploy / build (push) Successful in 3m56s

expanding puppet pr validation steps into multiple workflows, and
removing the need to `dnf install` all these packages each workflow run
would increase the performances.

- add puppet-pr-validator container with pre-installed requirements for
- bump base almalinux 9.7 image.

Reviewed-on: #42
This commit was merged in pull request #42.
This commit is contained in:
2026-03-17 17:21:55 +11:00
parent c52952e2e9
commit af824cdf22
4 changed files with 23 additions and 1 deletions
+1 -1
View File
@@ -1 +1 @@
20260308
20260317
@@ -0,0 +1 @@
docker
@@ -0,0 +1,20 @@
# almalinux/9.7/puppet-validator
docker_source = "git.unkin.net/unkin/almalinux9-base:latest"
packages = [
"rubygems",
"ruby-devel",
"gcc",
"make",
"redhat-rpm-config",
"glibc-headers",
"glibc-devel",
"libffi",
"libffi-devel"
]
scripts_pre_packages = [
"dnf -y group install \"Development Tools\""
]
scripts_final = [
"dnf clean all",
"rm -rf /var/cache/dnf"
]
@@ -0,0 +1 @@
20260317