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:
@@ -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
|
||||
Reference in New Issue
Block a user